| Using Netbean IDE for writing/compiling/debugging apps without using Project |
|
 |
Index ‹ java-programmer
|
- Previous
- 1
- 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
- 2
- cult3d e javaHo compilato un java per usarlo con cult3d ma quando lo chiamo dal cult mi
ritorna questo errore:
java.lang.NoClassDefFoundError
at com/ms/security/SecurityClassLoader.internalDefineClass
at com/ms/security/SecurityClassLoader.defineClass
at com/cult3d/IECult3DClassLoader.loadClass
at com/cult3d/IECult3DMain.event
Succede lo stesso anche se provo a compilare un esempio base di cult, a
questo punto penso di dover cambiare qualcosa nella procedura di
compilazione.
Qualcuno ha gia' sbattuto la testa contro questo errore?
- 4
- JMF on pocket pcI wrote an application for my iPAQ, and use JMF cross-platform
version, with Jeode, to playback a file.wav, but when the application
starts, the console shows these errors :
at com.sun.media.renderer.audio.JavaSoundRenderer.initDevice()
at com.sun.media.renderer.audio.JavaSoundRenderer.open()
at com.sun.media.BasicRendererModule.doPrefetch()
at com.sun.media.BasicTrackControl.prefetchTrack()
at com.sun.media.PlaybackEngine.doPrefetch1()
at com.sun.media.PlaybackEngine.doPrefetch()
at com.sun.media.PrefetchWorkThread.process()
at com.sun.media.StateTransitionWorkThread.run()
Why???
- 4
- 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
- 6
- 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
- 7
- 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.
- 8
- 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)
- 8
- 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
- 8
- 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?
- 9
- 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;
}
- 10
- 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
- 12
- 12
- UML Eclipse PluginDoes anyone know a Eclipse plugin that generates a UML diagram out of java code
Thanks
Felix
- 15
- loading varablesI have a variable "book" which askes the user for four titles which will be
with one patron's name.
How would i load this with a loop?
Some how I am getting lost?
Thank you.
input Patron's name
name = reader.readLine("Enter the first patron's name: ");
patron.setName(p);
for (int i = 1; i <= 3; i++){
Book = reader.readLine("Enter the book's title: ");
Book.setBook(i, Book);
- 16
- Non-blocking method for reading writing objects to socketsThe methods writeObject and readObject of socket class are blocking
one. i.e. if we create a ObjectInputStream object using
new ObjectInputStream(socket.getInputStream()), the methods blocks
until it gets some stream stuff.
What is the corresponding non-blocking mthod so as to include in
non-blocking programming?
|
| Author |
Message |
bagarow

|
Posted: 2006-5-11 2:33:00 |
Top |
java-programmer, Using Netbean IDE for writing/compiling/debugging apps without using Project
Hi
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
|
| |
|
| |
 |
LukaszP

|
Posted: 2006-5-11 2:52:00 |
Top |
java-programmer >> Using Netbean IDE for writing/compiling/debugging apps without using Project
I tried to do it, but failed.
As far as i know, it can't be done without creating project.
Regards
|
| |
|
| |
 |
Oliver Wong

|
Posted: 2006-5-11 3:53:00 |
Top |
java-programmer >> Using Netbean IDE for writing/compiling/debugging apps without using Project
<email***@***.com> wrote in message
news:email***@***.com...
> Hi
>
> 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.
What I did was create a project called "test", and put all my 1 file
test programs in there.
- Oliver
|
| |
|
| |
 |
Mitch

|
Posted: 2006-5-11 6:36:00 |
Top |
java-programmer >> Using Netbean IDE for writing/compiling/debugging apps without using Project
email***@***.com wrote:
> Hi
>
> 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
>
If I were you I would ditch netbeans for the first few (small) apps.
You end up learning the IDE, and not the Java. Textpad (Which is far
superior than notepad and as such worth the investment anyway) can
compile single Java files as well as numerous Java files, without the
need to create projects. Its great. www.textpad.com I'm guessing is
the link but google it otherwise. Oh it has a freeware version as well,
which simply reminds you its a freeware version every few times you run it.
|
| |
|
| |
 |
IchBin

|
Posted: 2006-5-11 7:23:00 |
Top |
java-programmer >> Using Netbean IDE for writing/compiling/debugging apps without using Project
Mitch wrote:
> email***@***.com wrote:
>> Hi
>>
>> 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
>>
>
> If I were you I would ditch netbeans for the first few (small) apps. You
> end up learning the IDE, and not the Java. Textpad (Which is far
> superior than notepad and as such worth the investment anyway) can
> compile single Java files as well as numerous Java files, without the
> need to create projects. Its great. www.textpad.com I'm guessing is
> the link but google it otherwise. Oh it has a freeware version as well,
> which simply reminds you its a freeware version every few times you run it.
I second that opinion. I use Netbeans and Eclipse but have a small but
nice ide that is easy to use and no big learning curve for what you
want to do.. It's called GEL, http://www.gexperts.com.
I used two other small ide's for quick stuff. They come from the
academic environment. BlueJ is used to help you learn OOP Java coding.
JGRASP http://www.jgrasp.org
BlueJ http://www.bluej.org
Thanks in Advance...
IchBin, Pocono Lake, Pa, USA
http://weconsultants.servebeer.com/JHackerAppManager
__________________________________________________________________________
'If there is one, Knowledge is the "Fountain of Youth"'
-William E. Taylor, Regular Guy (1952-)
|
| |
|
| |
 |
Oliver Wong

|
Posted: 2006-5-11 22:29:00 |
Top |
java-programmer >> Using Netbean IDE for writing/compiling/debugging apps without using Project
"Mitch" <email***@***.com> wrote in message
news:email***@***.com...
>
> Textpad (Which is far superior than notepad and as such worth the
> investment anyway) can compile single Java files as well as numerous Java
> files, without the need to create projects. Its great. www.textpad.com
> I'm guessing is the link but google it otherwise. Oh it has a freeware
> version as well, which simply reminds you its a freeware version every few
> times you run it.
TextPad only works on Windows, and if we're thinking of the same
version, then that version is shareware rather than freeware. That is, you
can download and try it for free, but if you use it continuously, you're
expected to pay for it (which is why it nags you every few times).
An alternative is jEdit (http://www.jedit.org/) which is written in Java
and so works on all OSes which support Java, and it's open source (so it's
"really" free). The downside is that jEdit is a bit slower than TextPad, but
the plus side is it has a plugin system that allows you to add functionality
to it.
I've used both jEdit and TextPad and they're both very good.
- Oliver
|
| |
|
| |
 |
Mitch

|
Posted: 2006-5-11 22:54:00 |
Top |
java-programmer >> Using Netbean IDE for writing/compiling/debugging apps without using Project
Oliver Wong wrote:
> "Mitch" <email***@***.com> wrote in message
> news:email***@***.com...
>>
[...]
>> it has a freeware version as well, which simply reminds you its a
>> freeware version every few times you run it.
>
> TextPad only works on Windows, and if we're thinking of the same
> version, then that version is shareware rather than freeware. That is,
[...]
Sorry, just a typo. It is shareware, and Windows only.
> An alternative is jEdit (http://www.jedit.org/) which is written in
> Java and so works on all OSes which support Java, and it's open source
> (so it's "really" free). The downside is that jEdit is a bit slower than
> TextPad, but the plus side is it has a plugin system that allows you to
> add functionality to it.
>
> I've used both jEdit and TextPad and they're both very good.
>
> - Oliver
Textpad also has a similar system,
http://www.textpad.com/add-ons/index.html just in case you were
interested. I've not used jEdit, so cant comment. I have used Textpad
for years, for free. I will however, as soon as someone starts paying
me a wage, pay for it. 'Cause I honestly think it's worth it.
Mitch.
|
| |
|
| |
 |
| |
 |
Index ‹ java-programmer |
- Next
- 1
- 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.
- 2
- 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?
- 3
- 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
- 4
- 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--
- 5
- 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
- 6
- 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!
- 7
- Head First JSP and ServletsHi
Could anybody send me these ebook: "Head First JSP and Servlets"?
or some test from troytec, certmagic for SCWCD
thanks in advance
- 8
- ***A Shibari & Bondage Lifestyle***<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft DHTML Editing Control">
<TITLE></TITLE>
</HEAD>
<BODY>
<P><SPAN class=cat_txt><SPAN
class=cat_txt><SPAN class=cat_txt><SPAN class=cat_txt>Bondage is a human sexual practice
involving being tied up or otherwise restrained, for the pleasure of one or more
partners. Have them lie on the bed naked, and then introduce them to a variety
of pleasant sensations.</SPAN><BR>
</SPAN>
</SPAN>
</SPAN><SPAN class=cat_txt><SPAN
class=cat_txt><SPAN class=cat_txt><A
href="http://www.bdsm-master-slave.com">www.bdsm-master-slave.com</A>
</SPAN>
</SPAN>
</SPAN></P>
</BODY>
</HTML>
_________________________________________
Usenet Zone Free Binaries Usenet Server
More than 120,000 groups
Unlimited download
http://www.usenetzone.com to open account
- 9
- Dumb instanceof questionIn a previous article, email***@***.com said:
>Is instanceof true for a superclass?
>
>So, if I have a Class MyClass and also MyClassSubClass, and I have an
>instance of MyClassSubClass mcsc, is (mcsc instanceof MyClass) true?
Yes.
--
Paul Tomblin <email***@***.com>, not speaking for anybody
"The only thing that interferes with my learning is my education."
-- Albert Einstein.
- 10
- Hashtable with initial valuesHello there,
Is there a way to create a Hashtable with some initial values?
in a same way as an array?
E.g.
String[] strings = {"2", "2","2"};
Thanx
- 11
- 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
- 12
- JMF for Linux: No such capture deviceHi All,
This error thread has been floating around for a few years with ZERO
resolution.
Error instantiating class: com.sun.media.protocol.v4l.DataSource :
java.io.IOException: java.lang.Error: No such capture device
While I can get the jmstudio to run, no matter what I try on this Linux
box (Ubuntu 6.06 Desktop) I get this error.
The code works file on Windows, and this is important because I really
need software that you write once, run anywhere. The only thing I want
to change is the MediaLocator from vfw://0 to v4l://0.
Any help?
Thanks,
Scott
- 13
- 14
- Cocksucker LewYep.
And Andrew Thomas,
And plenty of other arrogant, mouth foaming, blood sucking
idiots around here.
If I notice any problem here, this group will be levelled
to the ground, and all those suckers won't even recognize
themselves.
This is the final warnig.
I have done all I can to prevent it.
But...
Get yourself the most powerful tool for usenet you ever heard of.
NewsMaestro download page:
http://sourceforge.net/project/showfiles.php?group_id=203356
Web page:
http://tarkus01.by.ru/
Note: You need to have JVM (Java Virtual Machine)
installed. Otherwise, the program won't run on some versions
of Windows. Just try to run the program and if you see the
main window, it means you do have it installed already.
Otherwise, a quick search on the Internet will find it
easily. The file size should be around 5 megs.
JVM is available in Microsoft or Sun (original creator
of Java language) versions.
You can visit sun.com to get it.
Or, you can try this one for starters:
http://www.java-virtual-machine.net/download.html
It should have links to sites that have it, I believe.
- 15
- Netbeans 4.1: JavaDoc comment for package ?Hi there,
I'm almost done finishing up the first beta release of my (study) project and
so the time was come to dive more deeper into commenting. On a side note I have
to say considering Javadoc very appealing.
Alas, after having made the (obvious?) mistake of commenting my package and
discovering that this didn't work I read up on package-info.java and
package.html for commenting the whole package. Unfortunatly I couldn't make
Netbeans accept package-info.java so I resorted to the html file. While this
works excellent when it comes to Javadoc it also results in the html file being
included in my final jar distribution file. While this isn't a major problem I
don't consider it good practice...
So now I'm wondering if there is cleaner way in Netbeans to provide a Javadoc
comment for the entire package. Have I overlooked the obvious with
'package-info.java' or is there another option I could use ?
I was considering to see if I could make it ignore the package.html file when
building but I haven't come that far yet.
Thanks in advance for your comments.
--
Groetjes, Peter
.\\ PGP/GPG key: http://www.catslair.org/pubkey.asc
|
|
|