| Non-blocking method for reading writing objects to sockets |
|
 |
Index ‹ java-programmer
|
- Previous
- 1
- 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;
}
- 3
- 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
- 3
- 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.
- 4
- 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.
- 7
- 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
- 7
- 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???
- 9
- 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
- 9
- 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);
- 9
- 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.
- 11
- 11
- 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
- 11
- 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
- 11
- 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?
- 13
- 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
- 16
- 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
|
| Author |
Message |
Sameer

|
Posted: 2005-5-6 20:09:00 |
Top |
java-programmer, Non-blocking method for reading writing objects to sockets
The 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?
|
| |
|
| |
 |
Joseph Dionne

|
Posted: 2005-5-6 20:17:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
Sameer wrote:
> The 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?
>
Technically there are not non blocking socket write methods in any
language. There is either room enough in the socket write MCB to hold
the data, allowing the method to return, or there is not enough room,
and an error is returned to indicate a failure.
Either increase your transmit buffer size, which I believe defaults to
32kb, or find out why the data is not being transmitted to the network.
If your Objects are larger then 32kb, increasing the transmit buffer
is the answer. If your Objects are smaller than 32kb, then you most
likely have other issues.
joseph
|
| |
|
| |
 |
John C. Bollinger

|
Posted: 2005-5-6 23:26:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
Sameer wrote:
> The 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.
It sounds like you are unsatisfied with this aspect of the constructor's
behavior: "A serialization stream header is read from the stream and
verified. This constructor will block until the corresponding
ObjectOutputStream has written and flushed the header." (API docs)
> What is the corresponding non-blocking mthod so as to include in
> non-blocking programming?
ObjectInputStreams are incompatible with non-blocking programming, and
indeed, there can be no general-purpose, non-blocking alternative for
which the minimal unit of transfer is a whole object. This is because
it is impossible ever to guarantee to read an arbitrary object without
blocking. (Consider, for instance, one that is too large to fit in the
socket's kernel-level I/O buffer.)
The stream header check performed by ObjectInputStream's constructor
could conceivably be pushed back to the first read, allowing the
constructor to avoid blocking, but it wouldn't gain you much because the
reads themselves cannot be nonblocking.
--
John Bollinger
email***@***.com
|
| |
|
| |
 |
Sameer

|
Posted: 2005-5-7 15:36:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
Hello,
I have designed one chatting software using non-blocking features of
java.
In this project I transferred data using non-blocking methods of Buffer
related classes.
Now I decided to change the design of the projct and I like to send the
data as objects over the network using readObject and writeObject
methods of socket class.
For this purpose, I have to create instances ObjectInputStream and
ObjectOutputStream.
As per our previous discussion on this group the constructors of these
classes are BLOCKING methods.
Then how to carry out this? Is there any alternative or I have to
continue with blocking approach i.e. a multithreaded chatting server
where each thread handles one connection?
The code given under is not working...
Please suggest some remedy.
import java.io.*'
import java.net.*;
import java.nio.channels.*;;
import java.util.*;
public class PollingChatServer {
private int port;
private Vector sockets = new Vector();
public PollingChatServer(int port) throws IOException {
this.port = port;
listen();
}
private void listen() {
try {
ServerSocketChannel ssc = ServerSocketChannel.open();
ssc.configureBlocking(false);
ssc.socket().bind(new InetSocketAddress(port));
System.out.println("Listening on port " + port);
while (true) {
System.out.println("Looking for connections...");
SocketChannel sc = ssc.accept();
if (sc != null) {
System.out.println("Connection from " + sc);
sockets.addElement(sc);
}
for (Enumeration e = sockets.elements(); e.hasMoreElements();) {
SocketChannel socch = null;
try {
socch = (SocketChannel) (e.nextElement());
Socket soc = socch.socket();
System.out.println("In for loop before creation of ois...");
//a blocking method ois
ObjectInputStream ois = new ObjectInputStream(soc.getInputStream());
Message messageObject = (Message) ois.readObject();
String str = messageObject.message;
if (str.length() != 0) {
System.out.println("Sending " + str);
Message.BroadcastMessage(str, sockets);
}
} catch (IOException ie) {
System.out.println("Connection lost: " + socch);
sockets.remove(socch);
socch.close();
} catch (ClassNotFoundException cnfe) {
System.out.println(cnfe);
sockets.remove(socch);
socch.close();
}
}
try {
Thread.sleep(1000);
} catch (InterruptedException ie) {
}
}
} catch (IOException ie) {
ie.printStackTrace();
}
}
public static void main(String args[]) throws Exception {
int port = 12769;
new PollingChatServer(port);
}
}
|
| |
|
| |
 |
Esmond Pitt

|
Posted: 2005-5-7 17:53:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
Joseph Dionne wrote:
>
> Technically there are not non blocking socket write methods in any
> language. There is either room enough in the socket write MCB to hold
> the data, allowing the method to return, or there is not enough room,
> and an error is returned to indicate a failure.
Technically and more accurately, there *are indeed* non-blocking socket
write methods in both C and Java. In non-blocking mode, a socket write
will put as much as it can of the application data into the socket send
buffer without blocking and return that count, which can be zero if
there was no room. This is not an error condition.
I don't know what is meant by 'MCB', it is not a term associated with
sockets.
> Either increase your transmit buffer size, which I believe defaults to
> 32kb
The default is platform dependent. It is 8k on Windows which is not
sufficient.
>, or find out why the data is not being transmitted to the network.
to which the answer can really only be that the client isn't reading
fast enough, or at all.
|
| |
|
| |
 |
Joseph Dionne

|
Posted: 2005-5-8 0:00:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
Esmond Pitt wrote:
> Joseph Dionne wrote:
>
>>
>> Technically there are not non blocking socket write methods in any
>> language. There is either room enough in the socket write MCB to hold
>> the data, allowing the method to return, or there is not enough room,
>> and an error is returned to indicate a failure.
>
>
> Technically and more accurately, there *are indeed* non-blocking socket
> write methods in both C and Java. In non-blocking mode, a socket write
> will put as much as it can of the application data into the socket send
> buffer without blocking and return that count, which can be zero if
> there was no room. This is not an error condition.
>
> I don't know what is meant by 'MCB', it is not a term associated with
> sockets.
>
>> Either increase your transmit buffer size, which I believe defaults to
>> 32kb
>
>
> The default is platform dependent. It is 8k on Windows which is not
> sufficient.
>
>> , or find out why the data is not being transmitted to the network.
>
>
> to which the answer can really only be that the client isn't reading
> fast enough, or at all.
One can read a socket non blocked, using a single method call, receiving
either data, or no data. But, one cannot code a single method call to
write non blocked in a "fire and forget" manner. Even you acknowledge
that write might fail to emit all the data one attempted to write. So,
one always needs to put a loop around socket write methods, terminating
only after all data has been emitted.
That is why is said "technically". Conceptually, a non blocked socket
read method is expected to do one of two things, return data, or
indicate that no data is returned, while a socket write can have three
states, all data written, some data written, no data written. Since
"some data written" will a application error. I'm pretty sure no one
desires half of the STREAM delivered to the remote client.
|
| |
|
| |
 |
Esmond Pitt

|
Posted: 2005-5-8 17:17:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
Joseph Dionne wrote:
> One can read a socket non blocked, using a single method call, receiving
> either data, or no data.
or some data. There is a third state.
> But, one cannot code a single method call to
> write non blocked in a "fire and forget" manner. Even you acknowledge
> that write might fail to emit all the data one attempted to write. So,
> one always needs to put a loop around socket write methods, terminating
> only after all data has been emitted.
or when you have something better to do in non-blocking mode than wait
for the client to empty his receive buffer. Also, at some point you want
to decide that this is never going to happen and you prefer to give up.
> That is why is said "technically". Conceptually, a non blocked socket
> read method is expected to do one of two things, return data, or
> indicate that no data is returned, while a socket write can have three
> states, all data written, some data written, no data written. Since
> "some data written" will a application error. I'm pretty sure no one
> desires half of the STREAM delivered to the remote client.
Nevertheless that is how both the non-blocking read and non-blocking
write calls behave on a socket. There are three states in both, and
technically your statement does not hold water.
and BTW what exactly is a socket MCB?
|
| |
|
| |
 |
Joseph Dionne

|
Posted: 2005-5-8 21:43:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
Esmond Pitt wrote:
> Joseph Dionne wrote:
>
>> One can read a socket non blocked, using a single method call,
>> receiving either data, or no data.
>
>
> or some data. There is a third state.
Only proxy like applications, providing connectivity between two end
points, can truly read a socket STREAM without regard to message
boundaries. At some point, even a socket read method requires a
complete packet delivery.
As you may or may not know, not knowing the level of expertise you bring
to this discussion, socket stream of non ASCII STREAMS, use two to four
bytes preceding the data allowing the received to know the message size
and prepare applications to receive the data. Prior to threading
support, a relatively new feature, applications ip applications were
just state engines, with socket I/O just one state, using select() or
poll() to monitor state. These functions measured the leading edge
event of a socket STREAM, data has arrived. If one did not read all the
data received, select() (always), and poll() (most implementations)
would not signal the socket handle ready until more data arrives. This
is a common error in socket I/O applications.
My original point what that there exist no single socket interface
method that removes the responsibility to manage the socket STREAMS like
garbage collection has done for memory management. And, now we have
learned, even garbage collectors do not completely remove the job of
proper memory management, one can still obfuscate Object references in
many ways that prevent Object memory reclamation.
>
>> But, one cannot code a single method call to write non blocked in a
>> "fire and forget" manner. Even you acknowledge that write might fail
>> to emit all the data one attempted to write. So, one always needs to
>> put a loop around socket write methods, terminating only after all
>> data has been emitted.
>
>
> or when you have something better to do in non-blocking mode than wait
> for the client to empty his receive buffer. Also, at some point you want
> to decide that this is never going to happen and you prefer to give up.
>
>> That is why is said "technically". Conceptually, a non blocked socket
>> read method is expected to do one of two things, return data, or
>> indicate that no data is returned, while a socket write can have three
>> states, all data written, some data written, no data written. Since
>> "some data written" will a application error. I'm pretty sure no one
>> desires half of the STREAM delivered to the remote client.
>
>
> Nevertheless that is how both the non-blocking read and non-blocking
> write calls behave on a socket. There are three states in both, and
> technically your statement does not hold water.
>
> and BTW what exactly is a socket MCB?
An MCB, or the memory control blocks defining the socket's mbufs within
the ip stack application interface. It is a term I use, but is not part
of any user level, or even stack level, data structures. I was
incorrect to inject my nomenclature, but I have been working at low
level IP for decades, developing many features for my old IPX used with
such ease as Java's socket interfaces today.
Has that answered your question?
|
| |
|
| |
 |
Esmond Pitt

|
Posted: 2005-5-9 16:31:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
Joseph Dionne wrote:
>
> As you may or may not know, not knowing the level of expertise you bring
> to this discussion, socket stream of non ASCII STREAMS, use two to four
> bytes preceding the data allowing the received to know the message size
> and prepare applications to receive the data.
I've only been doing sockets since BSD 4.1, about 1983-4, but if this is
supposed to be a statement that is true of all non ASCII streams it just
isn't. Some application protocols do it. Some application protocols e.g.
XDR do something else. TCP doesn't do *anything* except put the required
length field in the IP header. Quite a few application protocols don't
prefix message lengths either: Telnet, FTP, and HTTP for starters.
> My original point what that there exist no single socket interface
> method that removes the responsibility to manage the socket STREAMS like
> garbage collection has done for memory management.
Well, I though your original point was 'Technically there are not non
blocking socket write methods in any language. There is either room
enough in the socket write MCB to hold the data, allowing the method to
return, or there is not enough room, and an error is returned to
indicate a failure.' There's now so much irrelevance being added such as
lectures on threads and further incorrect claims that the orignal
incorrect statement is being obscured, but it's still incorrect.
|
| |
|
| |
 |
Joseph Dionne

|
Posted: 2005-5-9 18:25:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
Esmond Pitt wrote:
> Joseph Dionne wrote:
>
>>
>> As you may or may not know, not knowing the level of expertise you
>> bring to this discussion, socket stream of non ASCII STREAMS, use two
>> to four bytes preceding the data allowing the received to know the
>> message size and prepare applications to receive the data.
>
>
> I've only been doing sockets since BSD 4.1, about 1983-4, but if this is
> supposed to be a statement that is true of all non ASCII streams it just
> isn't. Some application protocols do it. Some application protocols e.g.
> XDR do something else. TCP doesn't do *anything* except put the required
> length field in the IP header. Quite a few application protocols don't
> prefix message lengths either: Telnet, FTP, and HTTP for starters.
>
And how are you able to access the length field from the IP header via a
socket?
> > My original point what that there exist no single socket interface
>
>> method that removes the responsibility to manage the socket STREAMS
>> like garbage collection has done for memory management.
>
>
> Well, I though your original point was 'Technically there are not non
> blocking socket write methods in any language. There is either room
> enough in the socket write MCB to hold the data, allowing the method to
> return, or there is not enough room, and an error is returned to
> indicate a failure.' There's now so much irrelevance being added such as
> lectures on threads and further incorrect claims that the orignal
> incorrect statement is being obscured, but it's still incorrect.
Well, sir, I question your
|
| |
|
| |
 |
Esmond Pitt

|
Posted: 2005-5-9 20:26:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
Joseph Dionne wrote:
> And how are you able to access the length field from the IP header via a
> socket?
You can't, and I haven't stated otherwise.
> Well, sir, I question your
You question my what? Whatever this was going to be, I probably agree
with what you are trying say about how to program TCP streams, but
introducing all these inaccurate irrelevancies into the discussion isn't
helpful and causes confusion to uninformed readers.
|
| |
|
| |
 |
Joseph Dionne

|
Posted: 2005-5-9 20:48:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
Esmond Pitt wrote:
> Joseph Dionne wrote:
>
>> And how are you able to access the length field from the IP header via
>> a socket?
>
>
> You can't, and I haven't stated otherwise.
>
>> Well, sir, I question your
>
>
> You question my what? Whatever this was going to be, I probably agree
> with what you are trying say about how to program TCP streams, but
> introducing all these inaccurate irrelevancies into the discussion isn't
> helpful and causes confusion to uninformed readers.
>
>
My apologies, it was not my intention to send that message. Honoring
your concern of "inaccurate irrelevancies," I will not post replies
anymore, adding to the "confusion to uninformed readers."
|
| |
|
| |
 |
Marcin Grunwald

|
Posted: 2005-5-9 21:40:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
Sameer wrote:
> The 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?
Maybe something like this:
byte[] buffer = new byte[xxxx];
(use NIO to non-blocking read whole stream and write it to buffer)
ByteArrayInputStream bais = new ByteArrayInputStream(buffer);
ObjectInputStream ois = new ObjectInputStream(bais);
Unfortunately you can call "new ObjectInputStream()" after you read whole
data from socket.
Cheers
grundig
|
| |
|
| |
 |
John C. Bollinger

|
Posted: 2005-5-9 23:49:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
Sameer wrote:
> I have designed one chatting software using non-blocking features of
> java.
> In this project I transferred data using non-blocking methods of Buffer
> related classes.
OK, that sounds reasonable.
> Now I decided to change the design of the projct and I like to send the
> data as objects over the network using readObject and writeObject
> methods of socket class.
Why? What is to be gained by doing this, especially when you already
have a working program?
> For this purpose, I have to create instances ObjectInputStream and
> ObjectOutputStream.
> As per our previous discussion on this group the constructors of these
> classes are BLOCKING methods.
And what you have apparently missed is that reading and writing objects
are *necessarily* *also* blocking operations.
> Then how to carry out this? Is there any alternative or I have to
> continue with blocking approach i.e. a multithreaded chatting server
> where each thread handles one connection?
My recommendation would be to forget about transferring objects, as I
don't see anything to be gained by it in your application. A
multithreaded server with blocking I/O is another alternative.
Depending on the nature of the task, a multithreaded server with
_nonblocking_ I/O is sometimes appropriate. That last is the only mode
I see in which you could manage to combine object I/O via Java's built
in mechanism with non-blocking I/O, but by the time you were done you'd
have much more complicated code than necessary, yet little or no
improvement over the blocking I/O scenario.
> The code given under is not working...
I should say not. The only thing you do in a non-blocking manner is
accept connections. Even that you do a bit strangely, allowing the loop
to spin until it accepts the first connection. You then apparently
expect every live connection to provide a Message at every iteration of
the loop -- that's completely contrary to a non-blocking paradigm. I
cannot say how non-blocking-ready Message.BroadcastMessage may be, but
based on its apparent purpose, it doesn't appear to have any chance of a
correctly non-blocking implementation. Oh, and you don't seem to
provide any way to close a connection once it is opened.
> Please suggest some remedy.
Learn how to correctly implement non-blocking I/O. You said you already
had a program that successfully used it, but your code below makes me
doubtful of that. Once you understand non-blocking I/O better,
contemplate Object I/O until you understand why it is incompatible with
non-blocking I/O (if you can't figure it out then go back to step 1).
Finally, use your new knowledge to redesign your application.
We're still here if you conceive specific questions along your path to
enlightenment, but if you come back with code that doesn't use a
Selector then I, for one, will not hear you.
> import java.io.*'
> import java.net.*;
> import java.nio.channels.*;;
> import java.util.*;
>
> public class PollingChatServer {
> private int port;
>
> private Vector sockets = new Vector();
>
> public PollingChatServer(int port) throws IOException {
> this.port = port;
> listen();
> }
>
> private void listen() {
> try {
> ServerSocketChannel ssc = ServerSocketChannel.open();
> ssc.configureBlocking(false);
> ssc.socket().bind(new InetSocketAddress(port));
> System.out.println("Listening on port " + port);
> while (true) {
> System.out.println("Looking for connections...");
> SocketChannel sc = ssc.accept();
> if (sc != null) {
> System.out.println("Connection from " + sc);
> sockets.addElement(sc);
> }
> for (Enumeration e = sockets.elements(); e.hasMoreElements();) {
> SocketChannel socch = null;
> try {
> socch = (SocketChannel) (e.nextElement());
> Socket soc = socch.socket();
> System.out.println("In for loop before creation of ois...");
> //a blocking method ois
> ObjectInputStream ois = new ObjectInputStream(soc.getInputStream());
> Message messageObject = (Message) ois.readObject();
> String str = messageObject.message;
> if (str.length() != 0) {
> System.out.println("Sending " + str);
> Message.BroadcastMessage(str, sockets);
> }
> } catch (IOException ie) {
> System.out.println("Connection lost: " + socch);
> sockets.remove(socch);
> socch.close();
> } catch (ClassNotFoundException cnfe) {
> System.out.println(cnfe);
> sockets.remove(socch);
> socch.close();
> }
> }
> try {
> Thread.sleep(1000);
> } catch (InterruptedException ie) {
> }
> }
> } catch (IOException ie) {
> ie.printStackTrace();
> }
> }
--
John Bollinger
email***@***.com
|
| |
|
| |
 |
Sameer

|
Posted: 2005-5-10 18:34:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
Dear Sir,
Thanks for responding to my post.
Posted is the most-simplified version of my original program.
My program is based on the source code for non-blocking chat server
provided in Advanced NIO, Manning Publication by Gregory Travis.
I have a working system. But in this system I have to do a lot of
string manipulation for managing the chat system.
I have to give code to each message send to client/server and then
decode it to display it appropriately.
If the message the wrapped in a object along with other relevant
information as fields and then this object is send, then the code will
be much simplified.
It is not possible to do 'Object Sending + NIO functionality'
simultaneously???
It seems that you have lot of doubts about the source code provided. If
you have some source code which explain efficient handling of NIO for
chat related stuff, please provide it to me.
-Sameer
|
| |
|
| |
 |
Sameer

|
Posted: 2005-5-10 18:40:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
A lot of technical stuff here about my posting.
Can anybody provide some simple working examples about 'Object Sending
+ NIO functionality' in a Chat Server application?
|
| |
|
| |
 |
John C. Bollinger

|
Posted: 2005-5-10 23:49:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
Sameer wrote:
> It is not possible to do 'Object Sending + NIO functionality'
> simultaneously???
Given the context of this thread, I'll take that as "It is not possible
to send and receive Objects without blocking???"
One last time: no, it is not possible.
Fuller explanation:
* Sending an object down a byte stream has two steps, (1) creating a
byte sequence representing the Object and all the other Objects it
refers to directly or indirectly, and (2) sending the bytes.
ObjectOutputStream bundles all this up into its writeObject() method.
* Receiving an object from a byte stream has two steps, (1) receiving
all the bytes for the Object itself and for all the other objects it
refers to directly or indirectly, and (2) assembling the objects.
ObjectInputStream bundles all this up into its readObject() method.
* It is a fundamental characteristic of nonblocking I/O that the number
of bytes transferred in a single operation is unpredictable; to send
some fixed number of bytes you need to queue them and repeatedly,
whenever the output channel is ready to accept some, send as many as you
can without blocking. To receive bytes you do much the opposite,
reading as many bytes as are available whenever any are available, and
buffering them or queuing them for further handling by the application.
There is typically a delay between the time one non-blocking
operation is dispatched and the time another one can be successfully
performed (with more than zero bytes transferred). All of that
(including both writing and reading for multiple channels) can be
managed in a single thread if it is done correctly.
It is possible to handle an object write without blocking by capturing
the output to a buffer (possibly by using a ByteArrayOutputStream) and
then enqueuing the contents of the buffer and sending them in a
non-blocking manner as described above. This is broken with respect to
preserving referential integrity across the network link (which requires
use of a single, continuous stream of objects, whereas this scheme would
need to use a separate stream for each top-level object), but it could
conceivably serve your purpose.
It is *not* possible to perform an object read across a network (or from
disk) without the possibility of blocking. This is because you need to
receive *all* the bytes of the object before you can reconstitute it.
At a low level you could conceivably use non-blocking I/O to get the
bytes, but the overall "read object" operation cannot ever be guaranteed
to complete without blocking because you are never guaranteed to get all
the bytes in one read. Depending on the number of bytes required and
the size of the various buffers involved, it might not be possible to
*ever* get all the bytes in one read. Note also that with that being
the case, your server would need to be multithreaded in any case -- the
(nonblocking) network I/O operations would need to run in their own thread.
--
John Bollinger
email***@***.com
|
| |
|
| |
 |
John C. Bollinger

|
Posted: 2005-5-11 0:34:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
Sameer wrote:
> My program is based on the source code for non-blocking chat server
> provided in Advanced NIO, Manning Publication by Gregory Travis.
I am not familiar with the book, but the fact that a code appears in
print does not ensure that it is correct or bug-free. Moreover, if your
code does not exactly duplicate the published one then whether or not
the original code is correct is moot.
> I have a working system.
No doubt it works, at least inasmuch as you can tell in your testing and
use of it. That does not necessarily imply that it is actually avoiding
ever blocking on I/O, however, or that it is correctly using the
non-blocking capabilities or other features of NIO correctly. The code
you posted definitely is missing some of the *essentials* of correct
non-blocking I/O.
> But in this system I have to do a lot of
> string manipulation for managing the chat system.
> I have to give code to each message send to client/server and then
> decode it to display it appropriately.
I'm not sure I understand. Are you talking about character encodings?
And where are you worrying about displaying the data? Are you in
control of the clients? If so, then simply ensure that the clients
always use the same charset (as each other) for sending and receiving
messages. UTF-8 (or possibly UTF-16) will handle any and all characters
Java supports. The server then never needs to decode (or recode) the
messages.
> If the message the wrapped in a object along with other relevant
> information as fields and then this object is send, then the code will
> be much simplified.
I suspect the code could be much simplified via other approaches as
well. At some level, however, you have to recognize that a multi-user
network service is complex, and there's only so much simplification that
can be done.
Transferring data in object form might indeed be a good approach, but
you have to use standard, blocking I/O at the object level.
> It seems that you have lot of doubts about the source code provided. If
> you have some source code which explain efficient handling of NIO for
> chat related stuff, please provide it to me.
I do not have such code (specifically for chat), though I have general
experience with NIO, and more with the equivalent features of C/UNIX. I
don't see any particular reason why your problem domain (chat service)
is relevant to the general use of NIO features or, specifically,
non-blocking I/O. The topic is sufficiently complex, however, that I am
not inclined to prepare an example code for you. I, or others here,
will likely be willing to critique *complete* codes.
--
John Bollinger
email***@***.com
|
| |
|
| |
 |
jmricker

|
Posted: 2005-5-11 23:31:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
I would like to somehow interject my question into this discussion. I
also am writing a client/server using non blocking io. However I have
set up a selector to select those clients with buffers ready to be
read. Instead of using objects, I'm sending buffers of bytes. My
buffers are set up as:
[int id][int id2][int payload size][ payload of bytes of size
length ]
Now lets say my client has sent off two of these buffers as two
seperate (blocking?) writes in the time it takes for my server to get
around to readying from it. Are you saying that a blocking read will
just get the first buffer?
So far what I've been doing is this:
When a client connects, register the channel with a reading selector
with an object that wraps up a bytebuffer and does other administrative
tasks like checking header completeness.
When I select channels that I can read from, I read up to 512 bytes,
and push it into the container attached to the channel. I then check it
for completeness. If not, then I go off checking other channels, then
come back to this one, read off another 512 bytes, etc. Once I have a
complete header and payload, I pass it off the appropriate controller,
reset the container, and continue on.
I'm hoping to avoid the loop spending too much time reading in from one
client. My concern here is here, how can I be sure where the end of
the buffer is at? Lets say the client sends an incorrect payload size
or a byte of the payload gets lost in the transmission. If I have two
buffers sitting to be read, I could easily start reading bytes from the
second buffer into the first buffer. Any thoughts on my process?
Thanks
Joel
|
| |
|
| |
 |
John C. Bollinger

|
Posted: 2005-5-12 4:53:00 |
Top |
java-programmer >> Non-blocking method for reading writing objects to sockets
jmricker wrote:
> I would like to somehow interject my question into this discussion. I
> also am writing a client/server using non blocking io. However I have
> set up a selector to select those clients with buffers ready to be
> read. Instead of using objects, I'm sending buffers of bytes. My
> buffers are set up as:
>
> [int id][int id2][int payload size][ payload of bytes of size
> length ]
>
> Now lets say my client has sent off two of these buffers as two
> seperate (blocking?) writes in the time it takes for my server to get
> around to readying from it. Are you saying that a blocking read will
> just get the first buffer?
No, I'm not saying that. A single blocking read will get some number of
bytes, which may be anything from a single byte to the full contents of
both buffers (subject to various constraints, such as hardware and O/S
buffer sizes).
> So far what I've been doing is this:
>
> When a client connects, register the channel with a reading selector
> with an object that wraps up a bytebuffer and does other administrative
> tasks like checking header completeness.
>
> When I select channels that I can read from, I read up to 512 bytes,
> and push it into the container attached to the channel. I then check it
> for completeness. If not, then I go off checking other channels, then
> come back to this one, read off another 512 bytes, etc. Once I have a
> complete header and payload, I pass it off the appropriate controller,
> reset the container, and continue on.
That sounds like the right way to go about it, although you need to be
prepared for the case where you get the end one block _plus_ part or all
of another in the same read. If the client is sending data rapidly then
this is not too unlikely to happen.
> I'm hoping to avoid the loop spending too much time reading in from one
> client. My concern here is here, how can I be sure where the end of
> the buffer is at? Lets say the client sends an incorrect payload size
> or a byte of the payload gets lost in the transmission. If I have two
> buffers sitting to be read, I could easily start reading bytes from the
> second buffer into the first buffer. Any thoughts on my process?
TCP provides reliable transmission. It's not foolproof, but you don't
generally have to worry about data being lost in transmission without
the connection being broken altogether. (It would take a combination of
errors that is so unlikely to occur that you might as well ignore the
possibility.) Likewise accidental data corruption on the wire. On the
other hand, you either have to trust the client or have some way to
detect when it goes goofy. Your protocol does not seem to support the
latter.
I don't think any of that has much to do with hanging while reading from
any particular client. If a channel is ready to read then you can read
some number of bytes from it without blocking -- that's what it means
for the channel to be ready. You can use a blocking or nonblocking read
in this case; it doesn't matter. The alternative is to assign a unique
thread to each client, use blocking I/O, and get on with the rest of the
application. There are a great many servers that take the latter approach.
--
John Bollinger
email***@***.com
|
| |
|
| |
 |
| |
 |
Index ‹ java-programmer |
- Next
- 1
- 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?
- 2
- UML Eclipse PluginDoes anyone know a Eclipse plugin that generates a UML diagram out of java code
Thanks
Felix
- 3
- 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
- 4
- 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
- 5
- 6
- 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
- 7
- shit piss and dance on the grave of matt parkermatt parker alias email***@***.com matt parker alias erik van lint
email***@***.com matt parker alias email***@***.com any
useful information leading to the arrest of matt parker will be
rewarded matt parker alias email***@***.com matt parker alias
email***@***.com matt parker alias email***@***.com
matt parker alias van_lint_hout matt parker alias eric
> > > > email***@***.com asian women matt parker alias email***@***.com matt parker alias email***@***.com pin down the prick matt parker http://tinyurl.com/4cc39 matt parker alias f email***@***.com members of eurobrides.com have access to adult material depicting minors in sexual acts matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias j email***@***.com matt parker alias eric von email***@***.com matt parker alias evon email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias vonlindt_herzog matt parker alias von_linthout matt parker alias e email***@***.com matt parker alias email***@***.com matt parker
> > > > alias vanlunsen email***@***.com matt parker alias m email***@***.com matt parker alias erik email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias von lunsen hout matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com scams matt parker alias ericvan lunsen email***@***.com matt parker alias erik email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com russia an official complaint against matt parker was filed with the us embassy matt parker
> > > > alias email***@***.com matt parker alias von_lindt_herzog matt parker alias email***@***.com matt parker alias vanlint herzog matt parker alias vivalove.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias von email***@***.com matt
> > > > parker alias von email***@***.com matt parker alias email***@***.com matt parker alias van lindt email***@***.com matt parker alias email***@***.com matt parker alias eric email***@***.com matt parker alias eric email***@***.com matt parker alias email***@***.com matt parker alias vonlint matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias erik von email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erikvan email***@***.com matt parker alias eric email***@***.com matt parker alias email***@***.com matt parker alias linuxmail.org matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erik email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias tatiana email***@***.com matt parker alias erik von lunsen
> > > > email***@***.com matt parker alias email***@***.com schemes matt parker alias von email***@***.com matt parker alias email***@***.com matt parker alias sam email***@***.com matt parker alias eric van email***@***.com matt parker alias von email***@***.com matt parker alias phrozen email***@***.com matt parker alias ericvon email***@***.com matt parker alias e
> > > > von email***@***.com matt parker alias email***@***.com matt parker alias dchenka email***@***.com matt parker alias erikvon lunsen email***@***.com matt parker alias ericvon lunsen email***@***.com matt parker alias email***@***.com matt parker alias erik vonlunsen email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com
> > > > matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker stalks and tracks down clients to scam and blackmail them matt parker alias email***@***.com matt parker alias evon email***@***.com matt parker alias
> > > > ericvanlunsen email***@***.com matt parker alias e von email***@***.com matt parker alias evon email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias e van email***@***.com matt parker alias email***@***.com matt parker alias eric vonlindt email***@***.com matt parker alias r
> > > > email***@***.com matt parker forges server logs and evidence to make clients seem guilty of his criminal activities matt parker alias email***@***.com matt parker alias vanlindt herzog matt parker alias email***@***.com matt parker alias van_lint matt parker alias email***@***.com matt parker alias e van lindt email***@***.com matt parker alias date2000.net a bullet
> > > > between the eyes is the only thing matt parker will get matt parker alias van lunsen matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker illicitly distributes the private data of clients on the web matt parker alias erik email***@***.com matt parker alias von lindt email***@***.com matt parker alias
> > > > email***@***.com free internet personals matt parker was exposed as a liar at http://fravia.2113.ch/phplab/mbs.php3/mb001?num=1029551733&thread=1028133973 where he posts as jeff trueloves gerald michelle ccct and eric vanlint matt parker alias email***@***.com matt parker alias erik email***@***.com matt parker alias email***@***.com anybody providing
> > > > proof of the death of matt parker will receive a huge reward matt parker alias email***@***.com matt parker alias ericvonlunsen email***@***.com matt parker alias ann email***@***.com matt parker alias bestday email***@***.com matt parker alias von lint herzog matt parker alias email***@***.com matt parker alias ericvon lindt email***@***.com matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias evan lint email***@***.com matt parker alias email***@***.com matt parker alias eric vonlint email***@***.com matt parker alias c v email***@***.com matt parker alias email***@***.com matt parker alias groot
> > > > email***@***.com matt parker alias email***@***.com the scam site eurobrides.com is owned by the pervert matt parker from cottage grove oregon matt parker makes false accusations to make others seem guilty of his criminal activities matt parker alias email***@***.com kazakhstan matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias andy email***@***.com matt parker alias email***@***.com matt parker alias vonlint hout matt parker alias eric email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias eric email***@***.com matt parker alias email***@***.com matt parker alias erikvanlunsen
> > > > email***@***.com matt parker alias email***@***.com matt parker alias an email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erik van lunsen email***@***.com anticommercial activism matt parker alias erikvon email***@***.com matt parker alias email***@***.com matt parker alias evonlunsen email***@***.com
> > > > matt parker alias email***@***.com matt parker alias vonlint email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias von_lint matt parker alias van email***@***.com matt parker
> > > > alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias operamail.com damages will be claimed from matt parker to compensate financial loss matt parker alias email***@***.com matt parker alias e email***@***.com matt parker alias t email***@***.com matt parker makes a
> > > > living by selling underage female flesh to pornographers and whoremongers matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias e van lindt email***@***.com matt parker alias ericvon email***@***.com matt parker alias email***@***.com matt parker alias vanlinthout matt parker alias van
> > > > email***@***.com matt parker alias email***@***.com matt parker alias ericvan lint email***@***.com matt parker alias best dayis email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erik email***@***.com matt parker alias email***@***.com matt parker
> > > > alias tatjana email***@***.com matt parker alias email***@***.com matt parker alias von_lindt matt parker alias eric von email***@***.com frauds matt parker alias tania email***@***.com matt parker alias email***@***.com matt parker alias k email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com earn money for every forum this statement is posted in matt parker alias email***@***.com matt parker blackmails clients by coercing them to delete complaints from newsgroups matt parker alias von lindt hout matt parker alias email***@***.com matt parker alias l email***@***.com matt parker alias eric van lint email***@***.com matt parker
> > > > alias email***@***.com his true name is matt parker from cottage grove oregon and that is final matt parker alias erik van email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias evon email***@***.com matt parker alias email***@***.com matt parker alias von lunsen email***@***.com matt parker alias eric
> > > > van email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erik van email***@***.com matt parker alias erik email***@***.com matt parker alias email***@***.com matt parker alias tanja email***@***.com matt parker alias email***@***.com matt parker alias vernon email***@***.com matt
> > > > parker alias erikvon email***@***.com matt parker alias van_lunsen_herzog matt parker alias van email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias chess email***@***.com matt parker alias email***@***.com matt parker alias evan lunsen email***@***.com matt parker alias von lunsen herzog matt parker alias sergei
> > > > email***@***.com matt parker is webmaster of eurobrides.com and all sites in ip range 66.70.45.10 to 39 matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias sergey email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker
> > > > alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias e vanlint email***@***.com matt parker alias email***@***.com matt parker alias e email***@***.com matt parker alias c email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com rebuild the cuntface of the spamming
> > > > scammer matt parker http://tinyurl.com/452ch matt parker alias email***@***.com krgyzstan matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erik email***@***.com matt parker alias van email***@***.com matt parker alias
> > > > email***@***.com matt parker alias von_lunsenherzog matt parker spams the shit out of clients and newsgroups matt parker alias erik email***@***.com matt parker alias erik van lint email***@***.com matt parker alias eric van lunsen email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias eric email***@***.com matt parker alias s email***@***.com matt parker commits credit card fraud and identity theft against his clients matt parker alias eric vonlint email***@***.com matt parker alias email***@***.com matt parker alias eric email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com marriage matt parker alias ericvonlint email***@***.com matt parker alias vonlunsen_hout matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias eric vonlunsen email***@***.com matt parker
> > > > alias email***@***.com matt parker alias email***@***.com do not sign up at the scam site trueloves.com matt parker alias geronimo email***@***.com his mailbox is matt parker alias erik vanlint smolders pl 1 pb 223 leuven 3000 belgium matt parker alias erikvan email***@***.com matt parker alias email***@***.com matt parker alias erik vanlindt herzog@yahoo.
> > > > com matt parker alias evan email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias nad email***@***.com matt parker alias email***@***.com matt parker alias erik email***@***.com matt parker alias van email***@***.com matt parker alias email***@***.com matt parker is a hacker and stalker that steals personal data
> > > > from hacked mailboxes matt parker alias e von lunsen email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias eric vanlindt email***@***.com matt parker alias von_lunsenhout matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias evonlindt email***@***.com matt parker alias email***@***.com matt parker alias vonlintherzog matt parker alias erik email***@***.com matt parker alias evonlindt email***@***.com his real address is matthew parker 1505 ash ave cottage grove oregon 97424 matt parker alias email***@***.com matt parker alias call-russia.com
> > > > matt parker alias ericvon lint email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erik email***@***.com matt parker alias tanya email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias e van lint email***@***.com matt parker alias erik
> > > > email***@***.com matt parker alias erikvan lint email***@***.com matt parker alias erikvan email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias ericvon email***@***.com matt parker alias email***@***.com matt parker alias evanlunsenhout@yahoo.
> > > > com matt parker alias c email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erikvonlindt email***@***.com matt parker alias email***@***.com matt parker alias bestday is email***@***.com matt parker is scum in a waste piece of skin matt parker alias email***@***.com love matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker runs dating sites since people are unlikely to admit joining such sites by complaining matt parker alias ericvon email***@***.com matt parker alias email***@***.com matt
> > > > parker alias van lunsenherzog matt parker alias evon email***@***.com matt parker alias cecil v email***@***.com matt parker alias c email***@***.com matt parker alias email***@***.com matt parker alias ania email***@***.com matt parker alias email***@***.com matt parker alias vanlint email***@***.com matt parker alias e email***@***.com matt parker alias erikvanlint
> > > > email***@***.com matt parker alias vonlunsen email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias eric van email***@***.com matt parker alias eric van lunsen email***@***.com matt parker alias email***@***.com matt parker alias van lint email***@***.com matt parker alias email***@***.com his real address is matthew
> > > > parker alias cecil vernon humble 8201 sky mountain circle anchorage alaska 99502 matt parker is personally responsible for the death of a university employee his mailbox is matt parker alias anna parker po box 1147 cottage grove oregon 97424 matt parker alias eric email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias eric
> > > > email***@***.com matt parker alias e von email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erikvan lint email***@***.com matt parker alias email***@***.com in reality his name is matthew parker from cottage grove oregon and that is that matt parker alias email***@***.com stealing matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias ericvonlindt email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erik vonlindt email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com
> > > > matt parker alias vanlint_hout matt parker alias vonlindt hout spam the child molester matt parker off the web matt parker alias eric vonlindt email***@***.com matt parker is a murderer and this son of a bitch will be fried matt parker alias van lindt matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com
> > > > matt parker alias email***@***.com matt parker alias von lindthout matt parker is guilty of illegal people trafficking and will be prosecuted matt parker alias erikvan lindt email***@***.com all personals at trueloves.com are fake and the whole site sucks matt parker alias email***@***.com matt parker alias s email***@***.com matt parker alias email***@***.com
> > > > matt parker alias eric vonlunsen email***@***.com matt parker alias erikvon email***@***.com money matt parker alias eric email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias eric von email***@***.com matt parker alias c vernon email***@***.com matt parker alias vanlunsenhout matt parker alias e
> > > > email***@***.com matt parker alias email***@***.com matt parker alias van_lintherzog matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias evan email***@***.com matt parker alias erikvon email***@***.com matt parker alias email***@***.com matt
> > > > parker alias vonlint_hout matt parker of rainypasslodge.com supports illegal arms trafficking and terrorist activities matt parker alias email***@***.com matt parker alias erikvon email***@***.com matt parker alias erik von lindt email***@***.com matt parker alias vanlindt_herzog matt parker alias erikvon email***@***.com matt parker alias chess email***@***.com matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias evanlunsen email***@***.com matt parker alias p email***@***.com matt parker alias von email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias e email***@***.com matt parker alias von_lunsen matt
> > > > parker alias email***@***.com matt parker alias erik van email***@***.com matt parker alias evan email***@***.com matt parker alias larisa email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com rip off matt parker alias email***@***.com matt parker alias evan email***@***.com matt parker alias email***@***.com
> > > > matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias von lunsen matt parker alias email***@***.com matt parker alias ericvan lunsen email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com never submit true personal data to trueloves.com matt parker infects computers with a
> > > > nasty trojan virus matt parker alias eric van email***@***.com matt parker alias email***@***.com matt parker alias ericvan lindt email***@***.com matt parker alias von email***@***.com matt parker alias ericvanlint email***@***.com matt parker alias email***@***.com matt parker alias e van email***@***.com matt parker alias von lunsenhout matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias phro email***@***.com matt parker alias email***@***.com matt parker alias erikvanlunsen email***@***.com matt parker alias email***@***.com matt parker alias von_lint_herzog matt parker alias ericvon email***@***.com matt parker from cottage grove oregon spams the net with
> > > > childporn http://tinyurl.com/6kmea matt parker alias ericvon email***@***.com matt parker alias email***@***.com the dismissed employees filed an official complaint against matt parker with the us embassy matt parker alias eric email***@***.com matt parker alias kim email***@***.com matt parker alias eric van email***@***.com matt parker alias eric von email***@***.com matt
> > > > parker alias email***@***.com matt parker alias erikvan email***@***.com matt parker alias eric von lint email***@***.com matt parker alias ericvanlunsen email***@***.com matt parker alias gerald email***@***.com matt parker alias erikvon lindt email***@***.com matt parker alias email***@***.com matt parker is a filthy liar and libeler that manipulates the public opinion matt
> > > > parker alias evonlunsen email***@***.com matt parker alias email***@***.com matt parker alias ericvonlindt email***@***.com matt parker alias email***@***.com one of the dismissed university employees committed suicide matt parker alias email***@***.com matt parker alias evan email***@***.com matt parker alias von lunsen email***@***.com matt parker alias
> > > > email***@***.com matt parker alias erik von email***@***.com matt parker alias laurie email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com stole matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias anya email***@***.com matt parker alias v email***@***.com matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias van lint email***@***.com all personals at eurobrides.com are fake and the whole site sucks matt parker alias email***@***.com matt parker alias ericvan lindt email***@***.com matt parker alias email***@***.com matt parker alias erik van lindt email***@***.com this is hard evidence that matt parker
> > > > spams the net with childporn http://tinyurl.com/5h6rh matt parker alias erik email***@***.com matt parker alias vonlunsenherzog matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker
> > > > alias email***@***.com matt parker alias email***@***.com matt parker alias e email***@***.com matt parker alias erikvanlindt email***@***.com matt parker alias email***@***.com matt parker alias erik von email***@***.com matt parker alias kimberly email***@***.com matt parker alias email***@***.com matt parker alias ericvon lindthout@yahoo.
> > > > com matt parker alias email***@***.com matt parker alias eric von email***@***.com matt parker alias email***@***.com matt parker alias eric vanlindt email***@***.com matt parker alias email***@***.com matt parker alias erik email***@***.com matt parker alias von lindtherzog matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias ericvon lunsen email***@***.com matt parker alias erik email***@***.com matt parker alias email***@***.com do not sign up at the scam site eurobrides.com matt parker alias erik email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias peace email***@***.com matt parker alias
> > > > evon email***@***.com matt parker alias email***@***.com matt parker alias von_lintherzog matt parker alias e von email***@***.com matt parker alias email***@***.com matt parker alias e von email***@***.com matt parker alias eric email***@***.com matt parker alias e van email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias e vonlindt email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias e email***@***.com matt parker alias email***@***.com matt parker alias a email***@***.com matt parker alias skydesigns.com matt
> > > > parker alias eric email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias van lindt email***@***.com matt parker alias ruguide.com matt parker alias email***@***.com matt parker alias von_lunsen_herzog matt parker alias eric von lindt email***@***.com matt parker
> > > > alias eric von email***@***.com matt parker alias eric van email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias vanlindt hout matt parker alias email***@***.com matt parker alias evon lunsen email***@***.com matt parker alias evan lindt email***@***.com matt parker alias
> > > > erikvan email***@***.com matt parker alias europeanguide.net matt parker alias email***@***.com matt parker alias e vonlindt email***@***.com damn matt parker and let him burn in hell till it freezes over matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias ericvan email***@***.com the dismissed university employees suffered
> > > > financial loss due to matt parker matt parker alias email***@***.com matt parker alias e van email***@***.com matt parker alias vanlindt email***@***.com matt parker alias email***@***.com order a new identity at http://www.offshore-manual.com if personal data is captured by matt parker matt parker alias van email***@***.com matt parker alias email***@***.com matt
> > > > parker alias email***@***.com matt parker alias eric von lunsen email***@***.com matt parker alias ericvan email***@***.com matt parker alias best day is email***@***.com matt parker alias van_lindt_hout matt parker alias email***@***.com matt parker alias evanlindt email***@***.com matt parker alias erik van email***@***.com matt parker alias lunsen matt parker alias
> > > > email***@***.com matt parker alias e vonlint email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias cecil vernon email***@***.com matt parker alias e email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erik vonlint
> > > > email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias e von lint email***@***.com matt parker alias email***@***.com matt parker alias tatyana email***@***.com matt parker alias e vanlunsen email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias
> > > > ericvanlindt email***@***.com matt parker alias email***@***.com matt parker alias vonlindtherzog belarus matt parker alias email***@***.com matt parker distributes illegal software and warez that infringe the copyright law matt parker alias email***@***.com matt parker alias erik vanlint email***@***.com matt parker alias erik email***@***.com matt parker
> > > > alias eric van lindt email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias e vonlunsen email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias super email***@***.com matt parker alias erikvan email***@***.com matt
> > > > parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias matt email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias evan email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com keyword spam matt parker alias email***@***.com matt parker alias email***@***.com lithuania matt parker alias email***@***.com matt parker alias van_lint_herzog matt parker alias erikvon lint email***@***.com matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias eric von lint email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias van lindthout matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erik van lunsen email***@***.com matt parker
> > > > alias email***@***.com matt parker hacks mailboxes what constitutes violation of the confidentiality of mail matt parker alias von_lint_hout matt parker alias eric von lunsen email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com never
> > > > believe anything matt parker says or writes matt parker alias email***@***.com matt parker alias erikvan lunsen email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias e van email***@***.com matt parker alias email***@***.com matt parker alias e email***@***.com matt parker alias vanlunsen_hout matt parker
> > > > threatens the life of those that file complaints against his sites matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com free classified ads matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias vanlindt email***@***.com matt parker alias erikvonlindt email***@***.com matt
> > > > parker alias email***@***.com matt parker alias e vanlunsen email***@***.com matt parker alias best email***@***.com matt parker alias email***@***.com matt parker alias erikvon lint email***@***.com matt parker alias email***@***.com matt parker alias eric email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias s email***@***.com matt
> > > > parker instigates hackers and other criminals against clients and competitors matt parker alias email***@***.com matt parker alias eric van email***@***.com matt parker alias email***@***.com single women matt parker alias email***@***.com never submit true personal data to eurobrides.com matt parker alias email***@***.com matt parker alias email***@***.com
> > > > matt parker alias erikvonlint email***@***.com matt parker alias eric vanlunsen email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erikvan lunsen email***@***.com matt parker alias ericvan email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias e vanlindt
> > > > email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias von lindt email***@***.com spam newsgroups with this statement matt parker alias email***@***.com matt parker alias e vonlunsen email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias e email***@***.com matt parker alias vonlint herzog matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias kimberley email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com never enter a true credit card number at trueloves.com matt
> > > > parker alias von lintherzog matt parker alias email***@***.com matt parker alias email***@***.com matt parker commits online impersonation and harassment matt parker alias email***@***.com matt parker alias van_lindthout matt parker alias p email***@***.com do not believe any of the lies matt parker posts in this forum matt parker alias email***@***.com matt
> > > > parker alias sergi email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias e email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt
> > > > parker alias email***@***.com anna parker is a russian whore wanted by the police for prostitution matt parker alias email***@***.com single men matt parker alias ccc email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com shit piss and dance on the grave of matt parker matt parker has friends all over the world whose joy in life is exterminating dissatisfied clients matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias van_lindtherzog matt parker alias email***@***.com foreign matt parker alias von_lunsen_hout matt
> > > > parker alias robert email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias evan email***@***.com matt parker alias erikvon email***@***.com matt parker alias email***@***.com matt parker alias vanlunsen hout matt parker alias sex email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias e vanlint email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias von email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker was born on 13 september 65 matt parker alias van email***@***.com matt parker alias ccc email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erik
> > > > vonlunsen email***@***.com matt parker alias email***@***.com matt parker alias erikvan email***@***.com matt parker alias email***@***.com matt parker alias e van email***@***.com matt parker alias email***@***.com matt parker alias vonlunsen hout matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias
> > > > ericvonlunsen email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erik von email***@***.com matt parker alias email***@***.com matt parker alias vanlint_herzog matt parker alias email***@***.com matt parker alias t email***@***.com matt parker alias email***@***.com matt
> > > > parker alias tatyana email***@***.com matt parker alias email***@***.com matt parker owns dating sites since their clients are unlikely to complain and admit their membership matt parker alias evon lint email***@***.com matt parker alias erik von email***@***.com matt parker alias van lindt herzog matt parker alias email***@***.com matt parker alias frank
> > > > email***@***.com matt parker distributes illegal childporn on the net matt parker alias email***@***.com single russian women matt parker alias erikvon lunsen email***@***.com matt parker alias email***@***.com matt parker alias e email***@***.com matt parker alias ericvan email***@***.com cis matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias g email***@***.com matt parker alias e von lindt email***@***.com matt parker alias email***@***.com matt parker alias e van lunsen email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias e email***@***.com matt parker alias vonlunsen
> > > > herzog matt parker alias email***@***.com matt parker alias eric van lindt email***@***.com matt parker alias email***@***.com matt parker alias van lunsen hout matt parker alias von_lindtherzog matt parker alias erik van lindt email***@***.com matt parker alias email***@***.com matt parker alias von lint hout matt parker alias email***@***.com matt
> > > > parker alias email***@***.com matt parker alias vonlunsen matt parker violates the internet privacy act by distributing stolen personal data matt parker alias parker matt parker alias email***@***.com matt parker alias erik van email***@***.com matt parker alias vonlinthout western union matt parker alias e van email***@***.com matt parker alias
> > > > email***@***.com matt parker alias van_lunsen_hout make matt parker bleed http://tinyurl.com/v4oa matt parker alias eric email***@***.com matt parker alias von lint email***@***.com matt parker alias erikvanlint.com registers domains with the name of his clients to impersonate them matt parker alias erik email***@***.com matt parker alias e von lint email***@***.com
> > > > matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias d email***@***.com matt parker alias phillip email***@***.com matt parker alias email***@***.com
> > > > the leuven university fired three employees due to the lies of matt parker matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias e van email***@***.com matt parker alias erik von email***@***.com matt parker alias email***@***.com matt parker is a dangerous mentally deranged
> > > > criminal and needs psychiatric confinement cheaters never enter a true credit card number at eurobrides.com matt parker alias email***@***.com stay away from trueloves.com or be hacked and scammed matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias super email***@***.com matt
> > > > parker alias erik van email***@***.com matt parker alias email***@***.com matt parker alias vonlindt email***@***.com matt parker alias email***@***.com matt parker alias van lunsenhout matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker
> > > > alias email***@***.com fsu matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias evanlindt email***@***.com matt parker alias e email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias ericvon email***@***.com matt parker alias email***@***.com matt parker
> > > > alias email***@***.com matt parker alias eric vanlint email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker is webmaster of trueloves.com and all sites in ip range 66.70.45.10 to 39 matt parker alias email***@***.com matt parker alias e vanlindt email***@***.com matt parker alias email***@***.com matt
> > > > parker alias von lint matt parker alias evanlint email***@***.com matt parker alias evan email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com one of the dismissed employees did not find a new job got into debts and was found in a noose matt parker alias email***@***.com matt
> > > > parker alias evon lint email***@***.com matt parker alias erikvanlint email***@***.com matt parker alias evonlint email***@***.com matt parker alias email***@***.com matt parker alias e email***@***.com matt parker is a gay masochist whose ass will be raped by gangs of fat black jail bubbas matt parker alias email***@***.com boycott the commercial dating sites of matt parker
> > > > matt parker alias vanlint matt parker alias email***@***.com matt parker alias cecil email***@***.com members of trueloves.com have access to adult material depicting minors in sexual acts matt parker alias email***@***.com matt parker alias erik email***@***.com matt parker alias email***@***.com matt parker alias vonlindt herzog matt parker alias van lunsen herzog matt
> > > > parker alias email***@***.com matt parker alias erik von lint email***@***.com matt parker alias email***@***.com matt parker alias eric van email***@***.com matt parker alias email***@***.com matt parker alias van lunsen email***@***.com matt parker alias email***@***.com matt parker alias erik van email***@***.com romance matt parker alias
> > > > erik von lunsen email***@***.com matt parker alias tanja email***@***.com matt parker alias vanlindt matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com for free phonesex 24-7 dial 9073494969 http://tinyurl.com/6cmk6 matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias
> > > > sergej email***@***.com matt parker alias email***@***.com latvia matt parker alias vonlunsen_herzog matt parker alias email***@***.com matt parker alias deep email***@***.com matt parker alias g email***@***.com russian scammers matt parker alias ericvon lindt email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker
> > > > alias vanlunsen herzog matt parker alias e email***@***.com matt parker alias loves.ws matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias e von email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias van_lunsen far east matt parker alias email***@***.com matt parker alias van
> > > > lint herzog matt parker alias erik von lint email***@***.com matt parker alias van_lindt_herzog matt parker is a filthy motherfucker that likes computer chess games matt parker alias email***@***.com matt parker alias ericvan email***@***.com matt parker alias email***@***.com matt parker alias sex email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias evonlint email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com international matt parker alias lindt matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias von email***@***.com appeal to do physical material
> > > > and moral harm to matt parker his wife and loved ones http://tinyurl.com/4orbq matt parker alias van lint matt parker alias e van lint email***@***.com this statement is made in loving memory of the university employee that was killed by matt parker matt parker alias e email***@***.com earn money for every email address this chain letter is forwarded to matt parker alias
> > > > vanlindtherzog matt parker alias vonlunsenhout matt parker alias email***@***.com matt parker alias cecil vern email***@***.com matt parker alias erikvanlindt email***@***.com matt parker alias erik von email***@***.com matt parker alias email***@***.com matt parker alias tatiana email***@***.com matt parker sells underage mail order brides on the web matt parker
> > > > alias email***@***.com matt parker alias vanlint hout matt parker alias email***@***.com matt parker alias eric vanlint email***@***.com change country of residence if personal data is captured by matt parker matt parker alias van lint hout matt parker alias vonlint_herzog matt parker alias e email***@***.com matt parker alias email***@***.com matt parker alias
> > > > van_lunsenherzog matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias ericvon lint email***@***.com matt parker alias email***@***.com matt parker alias evon email***@***.com matt parker alias e von email***@***.com matt parker alias ericvan email***@***.com matt parker alias vanlintherzog matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias evon lindt email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erik email***@***.com estonia matt parker alias van_lindt
> > > > matt parker alias email***@***.com matt parker alias evon lindt email***@***.com matt parker alias erikvonlint email***@***.com matt parker alias email***@***.com matt parker alias van_linthout matt parker alias van linthout matt parker is a pedophile and child molester with many fake pseudonyms and multiple personalities matt parker alias e email***@***.com matt
> > > > parker alias email***@***.com throw a molotov cocktail through the window of matt parker matt parker alias matthew email***@***.com matt parker alias vanlunsen_herzog ukraine matt parker alias evan lunsen email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erikvan lindt email***@***.com matt parker alias erik
> > > > vonlint email***@***.com matt parker alias email***@***.com matt parker alias tanya email***@***.com matt parker alias email***@***.com matt parker alias eric von email***@***.com matt parker alias erik vanlint email***@***.com matt parker alias bestdayis email***@***.com free online dating service matt parker alias eric vanlunsen email***@***.com matt parker alias e van
> > > > email***@***.com matt parker alias erikvon lindt email***@***.com matt parker alias erik vonlindt email***@***.com matt parker alias erik vanlunsen email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias vanlindthout matt parker alias email***@***.com matt parker alias vern email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias lint matt parker alias email***@***.com matt parker
> > > > alias van lintherzog matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias yahoo.com matt parker alias ericvan email***@***.com matt parker alias erik van email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias vonlindthout matt parker
> > > > alias van lindtherzog moldova matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias vanlunsen email***@***.com matt parker alias email***@***.com matt parker alias van_lunsenhout matt parker alias email***@***.com matt parker will be busted sentenced jailed and fried matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias von linthout matt parker alias d email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com introductions matt parker alias email***@***.com matt parker alias ericvan email***@***.com matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias ericvanlindt email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com anybody providing proof of having harmed matt parker his wife and relatives will be rewarded stay away from
> > > > eurobrides.com or be hacked and scammed matt parker alias e van lunsen email***@***.com matt parker alias eric van email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias vonlindt_hout matt parker alias email***@***.com matt parker alias vonlint hout@yahoo.
> > > > com matt parker alias email***@***.com matt parker alias von email***@***.com matt parker alias email***@***.com matt parker alias erik von email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erikvan email***@***.com matt parker alias hotmail.com matt parker alias
> > > > eric email***@***.com matt parker alias von lindt matt parker alias eric email***@***.com matt parker alias email***@***.com matt parker alias erik vanlindt email***@***.com matt parker alias email***@***.com matt parker alias erik van email***@***.com matt parker alias email***@***.com matt parker alias e von email***@***.com matt parker alias
> > > > ericvan email***@***.com matt parker alias email***@***.com his mailbox is matt parker alias vern humble 200 west 34th ave suite 431 anchorage alaska 99503 http://tinyurl.com/5uoej matt parker trades in teenage brides from russia and the philippines matt parker alias evanlunsen email***@***.com matt parker alias email***@***.com ukrainian matt parker alias
> > > > vanlunsenherzog matt parker alias email***@***.com matt parker alias van email***@***.com matt parker alias email***@***.com matt parker alias ericvon email***@***.com matt parker alias email***@***.com matt parker alias eric von email***@***.com matt parker alias c vern email***@***.com matt parker alias von_lindthout matt parker alias
> > > > email***@***.com matt parker alias e email***@***.com matt parker alias e von lindt email***@***.com matt parker alias eric email***@***.com matt parker alias e von email***@***.com matt parker alias nadejda email***@***.com matt parker alias evon email***@***.com matt parker alias von lunsenherzog matt parker alias email***@***.com matt parker
> > > > alias best email***@***.com the date of birth of matt parker is 13 sep 65 matt parker alias erikvon email***@***.com matt parker alias email***@***.com matt parker alias jerry email***@***.com personal ads matt parker alias van lunsen email***@***.com matt parker alias erik von email***@***.com matt parker alias evon lunsen email***@***.com matt parker alias erik_vonlunsenherzog@yahoo.
> > > > com matt parker alias eric email***@***.com matt parker alias vanlunsen matt parker alias email***@***.com the scam site trueloves.com is owned by the pervert matt parker from cottage grove oregon matt parker alias anna email***@***.com matt parker alias evan email***@***.com matt parker alias email***@***.com never submit a real email address to trueloves.com
> > > > matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias erikvonlunsen email***@***.com matt parker alias email***@***.com matt parker alias erikvon email***@***.com matt parker alias erik email***@***.com matt parker alias
> > > > ericvan lint email***@***.com matt parker alias vonlindt email***@***.com matt parker alias evon email***@***.com matt parker alias eric von email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt
> > > > parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias e von lunsen email***@***.com matt parker alias evanlint email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com nail down the cumbag matt parker http:
> > > > //tinyurl.com/58hwa matt parker alias email***@***.com matt parker alias van lindt hout matt parker alias eric email***@***.com matt parker alias von lindt herzog matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias best day email***@***.com eastern european women matt parker alias evan lint email***@***.com matt parker alias
> > > > email***@***.com his real name is matthew parker from cottage grove oregon and that is it http://tinyurl.com/4c2t5 pen pals matt parker alias email***@***.com matt parker alias erikvan email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias
> > > > email***@***.com matt parker alias tania email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com schemers matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias eric van
> > > > lint email***@***.com matt parker alias vonlindt matt parker alias ericvanlint email***@***.com matt parker alias vonlunsen email***@***.com matt parker alias laura email***@***.com matt parker alias email***@***.com matt parker alias van email***@***.com matt parker alias email***@***.com this statement is made pending the issue of the official complaint against matt parker
> > > > matt parker alias email***@***.com matt parker alias erik vanlunsen email***@***.com matt parker alias vanlindt_hout matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias von_lindt_hout matt parker alias anja email***@***.com matt parker alias von_lunsenherzog@yahoo.
> > > > com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias n email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker illicitly publishes personal data that he steals from hacked mailboxes
> > > > matt parker alias email***@***.com matt parker alias philip email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker hacks the email of his clients and violates the confidentiality of mail the only purpose of antiscam.org is to lead users to the commercial sites of matt parker matt parker alias
> > > > email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com virtual greeting cards matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias tatjana email***@***.com matt parker alias email***@***.com matt parker alias c_v_humble@yahoo.
> > > > com matt parker alias erik von lindt email***@***.com matt parker alias email***@***.com matt parker alias email***@***.com matt parker alias vanlint email***@***.com matt parker alias e vonlint email***@***.com matt parker alias von lint email***@***.com matt parker alias email***@***.com matt parker alias evan lindt email***@***.com never submit a real email address to
> > > > eurobrides.com matt parker alias email***@***.com matt parker alias eric email***@***.com report matt parker to email***@***.com and http://tinyurl.com/5ubpd matt parker alias email***@***.com matt parker alias e email***@***.com ukrainian women matt parker alias email***@***.com matt parker alias ericvonlint email***@***.com matt parker alias erikvonlunsen
> > > > email***@***.com free on line singles site matt parker was born on 13 09 65 matt parker alias email***@***.com matt parker alias eric von lindt email***@***.com anna parker married a limpdick yank to escape prosecution in russia http://tinyurl.com/56dqa
- 8
- 9
- 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?
- 10
- 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.
- 11
- 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.
- 12
- 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--
- 13
- 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
- 14
- 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)
- 15
- Using Jakarta commons-net - STREAM_TRANSFER_MODEThree years ago, I created a very simple FTP utility for a project. The
main purpose was to upload and download files between two systems. At the
time, I figured it would not be used for very long, but as you can see it is
still there. The problem I am experiencing now, is that the utility is
expected to upload thousands of files at one time. For awhile, the process
was keeping up, but it would seem that there is a problem, now.
I contacted my network group and they claim that my FTP utility is the
issue. I find it hard to believe that the code is the issue when it can
upload more files to one system MUCH faster than to the other system.
However, my problem is that I am unable to determine how "tweak" the code to
make it more efficient with how it is uploading. I found in the Jakarta
JavaDocs the definition for STREAM_TRANSFER_MODE and it is defined to upload
10 bytes at a time. I was wondering if there was a way to tune that. I
could be going way off base here, but it was only a consideration.
Thanks!
|
|
|