prevayler-coders Mailing List for Prevayler (Page 5)
Brought to you by:
jsampson,
klauswuestefeld
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
(13) |
May
(83) |
Jun
(8) |
Jul
(18) |
Aug
(33) |
Sep
(132) |
Oct
(16) |
Nov
(32) |
Dec
(32) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(35) |
Feb
(21) |
Mar
(7) |
Apr
(11) |
May
(18) |
Jun
|
Jul
(21) |
Aug
(14) |
Sep
(7) |
Oct
|
Nov
(16) |
Dec
|
2006 |
Jan
(15) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(57) |
Jul
|
Aug
(15) |
Sep
(3) |
Oct
(1) |
Nov
|
Dec
|
2007 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(9) |
Jul
(7) |
Aug
|
Sep
(2) |
Oct
(1) |
Nov
|
Dec
(1) |
2008 |
Jan
|
Feb
(4) |
Mar
(10) |
Apr
(20) |
May
|
Jun
(5) |
Jul
(34) |
Aug
(2) |
Sep
|
Oct
(2) |
Nov
(2) |
Dec
|
2009 |
Jan
|
Feb
|
Mar
(5) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Brian S. <br...@sl...> - 2007-06-18 04:49:47
|
Deleting log files is really bad advice. There may be a way to recover those transactions. Better to make a full copy of the directory as it exists today before doing anything else. Also, make sure you keep any backups. Based on the timestamps, here's a hypothesis: it looks like something went wrong on May 25th and the server restarted multiple times. Then log 347 went missing somehow (perhaps in an attempt to fix things), and the next time the server was restarted, and log 347 was created. This continued until it need to roll over (to log 348) but that file existed already, so things got very confused. - Brian On 6/17/07, Klaus Wuestefeld <kla...@gm...> wrote: > Hi :) > > Simply take a snapshot and delete the log. That should do it. > > But can you send us the log and the code? I have never seen this case. > > Thanks, Klaus. > > > > On 6/16/07, Travelmole Travelmole <tes...@ya...> wrote: > > Hi everybody, > > > > I am using prevayler version 2.1 to store my data. The application has been > > running for last 2 years. > > > > Since last month, new data created is being lost when we restart the web > > server. > > > > In the catalina.out file, I am seeing multiple instances of this exception - > > > > java.io.IOException: Attempt to create command log file that already > > existed: /home/demo/prevayler/pro > > jects/000000000000000000348.commandLog > > at > > org.prevayler.implementation.NumberFileCreator.newLog(NumberFileCreator.java:28) > > at > > org.prevayler.implementation.CommandOutputStream.logStream(CommandOutputStream.java:52) > > at > > org.prevayler.implementation.CommandOutputStream.logStream(CommandOutputStream.java:58) > > at > > org.prevayler.implementation.CommandOutputStream.writeCommand(CommandOutputStream.java:26) > > at > > org.prevayler.implementation.SnapshotPrevayler.executeCommand(SnapshotPrevayler.java:71) > > .... > > .... > > > > I am using linux, Tomcat as web server. > > > > List of last few CommandLog file is as below ( note the sequence of file is > > not in same sequence as dates !! ) - > > > > -rwxrw-rw- 1 root root 100554 Feb 8 03:08 > > 000000000000000000341.commandLog > > -rwxrw-rw- 1 root root 100490 Feb 8 03:08 > > 000000000000000000342.commandLog > > -rwxrw-rw- 1 root root 59599 Feb 8 03:08 > > 000000000000000000343.commandLog > > -rwxrw-rw- 1 root root 101121 May 25 08:35 > > 000000000000000000344.commandLog > > -rwxrw-rw- 1 root root 100992 May 25 08:35 > > 000000000000000000345.commandLog > > -rwxrw-rw- 1 root root 100690 May 25 08:35 > > 000000000000000000346.commandLog > > -rwxrw-rw- 1 root root 100901 Jun 8 05:26 > > 000000000000000000347.commandLog > > -rwxrw-rw- 1 root root 101121 May 25 09:06 > > 000000000000000000348.commandLog > > -rwxrw-rw- 1 root root 100992 May 25 09:06 > > 000000000000000000349.commandLog > > -rwxrw-rw- 1 root root 100690 May 25 09:06 > > 000000000000000000350.commandLog > > -rwxrw-rw- 1 root root 58317 May 25 09:06 > > 000000000000000000351.commandLog > > > > How do I resolve this problem ? > > > > Thanks & Regards, > > Om > > > > ________________________________ > > Be a PS3 game guru. > > Get your game face on with the latest PS3 news and previews at Yahoo! Games. > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by DB2 Express > > Download DB2 Express C - the FREE version of DB2 express and take > > control of your XML. No limits. Just data. Click to get it now. > > http://sourceforge.net/powerbar/db2/ > > _______________________________________________ > > Prevayler-coders mailing list > > Pre...@li... > > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Prevayler-coders mailing list > Pre...@li... > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > > |
From: Klaus W. <kla...@gm...> - 2007-06-18 02:12:04
|
Hi :) Simply take a snapshot and delete the log. That should do it. But can you send us the log and the code? I have never seen this case. Thanks, Klaus. On 6/16/07, Travelmole Travelmole <tes...@ya...> wrote: > Hi everybody, > > I am using prevayler version 2.1 to store my data. The application has been > running for last 2 years. > > Since last month, new data created is being lost when we restart the web > server. > > In the catalina.out file, I am seeing multiple instances of this exception - > > java.io.IOException: Attempt to create command log file that already > existed: /home/demo/prevayler/pro > jects/000000000000000000348.commandLog > at > org.prevayler.implementation.NumberFileCreator.newLog(NumberFileCreator.java:28) > at > org.prevayler.implementation.CommandOutputStream.logStream(CommandOutputStream.java:52) > at > org.prevayler.implementation.CommandOutputStream.logStream(CommandOutputStream.java:58) > at > org.prevayler.implementation.CommandOutputStream.writeCommand(CommandOutputStream.java:26) > at > org.prevayler.implementation.SnapshotPrevayler.executeCommand(SnapshotPrevayler.java:71) > .... > .... > > I am using linux, Tomcat as web server. > > List of last few CommandLog file is as below ( note the sequence of file is > not in same sequence as dates !! ) - > > -rwxrw-rw- 1 root root 100554 Feb 8 03:08 > 000000000000000000341.commandLog > -rwxrw-rw- 1 root root 100490 Feb 8 03:08 > 000000000000000000342.commandLog > -rwxrw-rw- 1 root root 59599 Feb 8 03:08 > 000000000000000000343.commandLog > -rwxrw-rw- 1 root root 101121 May 25 08:35 > 000000000000000000344.commandLog > -rwxrw-rw- 1 root root 100992 May 25 08:35 > 000000000000000000345.commandLog > -rwxrw-rw- 1 root root 100690 May 25 08:35 > 000000000000000000346.commandLog > -rwxrw-rw- 1 root root 100901 Jun 8 05:26 > 000000000000000000347.commandLog > -rwxrw-rw- 1 root root 101121 May 25 09:06 > 000000000000000000348.commandLog > -rwxrw-rw- 1 root root 100992 May 25 09:06 > 000000000000000000349.commandLog > -rwxrw-rw- 1 root root 100690 May 25 09:06 > 000000000000000000350.commandLog > -rwxrw-rw- 1 root root 58317 May 25 09:06 > 000000000000000000351.commandLog > > How do I resolve this problem ? > > Thanks & Regards, > Om > > ________________________________ > Be a PS3 game guru. > Get your game face on with the latest PS3 news and previews at Yahoo! Games. > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Prevayler-coders mailing list > Pre...@li... > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > > |
From: Travelmole T. <tes...@ya...> - 2007-06-16 13:22:38
|
Hi everybody, I am using prevayler version 2.1 to store my data. The application has been running for last 2 years. Since last month, new data created is being lost when we restart the web server. In the catalina.out file, I am seeing multiple instances of this exception - java.io.IOException: Attempt to create command log file that already existed: /home/demo/prevayler/pro jects/000000000000000000348.commandLog at org.prevayler.implementation.NumberFileCreator.newLog(NumberFileCreator.java:28) at org.prevayler.implementation.CommandOutputStream.logStream(CommandOutputStream.java:52) at org.prevayler.implementation.CommandOutputStream.logStream(CommandOutputStream.java:58) at org.prevayler.implementation.CommandOutputStream.writeCommand(CommandOutputStream.java:26) at org.prevayler.implementation.SnapshotPrevayler.executeCommand(SnapshotPrevayler.java:71) .... .... I am using linux, Tomcat as web server. List of last few CommandLog file is as below ( note the sequence of file is not in same sequence as dates !! ) - -rwxrw-rw- 1 root root 100554 Feb 8 03:08 000000000000000000341.commandLog -rwxrw-rw- 1 root root 100490 Feb 8 03:08 000000000000000000342.commandLog -rwxrw-rw- 1 root root 59599 Feb 8 03:08 000000000000000000343.commandLog -rwxrw-rw- 1 root root 101121 May 25 08:35 000000000000000000344.commandLog -rwxrw-rw- 1 root root 100992 May 25 08:35 000000000000000000345.commandLog -rwxrw-rw- 1 root root 100690 May 25 08:35 000000000000000000346.commandLog -rwxrw-rw- 1 root root 100901 Jun 8 05:26 000000000000000000347.commandLog -rwxrw-rw- 1 root root 101121 May 25 09:06 000000000000000000348.commandLog -rwxrw-rw- 1 root root 100992 May 25 09:06 000000000000000000349.commandLog -rwxrw-rw- 1 root root 100690 May 25 09:06 000000000000000000350.commandLog -rwxrw-rw- 1 root root 58317 May 25 09:06 000000000000000000351.commandLog How do I resolve this problem ? Thanks & Regards, Om --------------------------------- Be a PS3 game guru. Get your game face on with the latest PS3 news and previews at Yahoo! Games. |
From: Petr G. <pet...@gm...> - 2007-06-13 06:27:17
|
Hello. Just checked out HEAD revision 120 from repository. There is a couple of compilation errors in org.prevayler.implementation.QueryExecutionTest: The method execute(GenericTransaction<? super List,R,E>) in the type Prevayler<List> is not applicable for the arguments (QueryExecutionTest.MyQuery) /src/test/org/prevayler/implementation QueryExecutionTest.java line 41 Patch for possible fix is below. -- Petr Gladkikh --- src/test/org/prevayler/implementation/QueryExecutionTest.java (revision 120) +++ src/test/org/prevayler/implementation/QueryExecutionTest.java (working copy) @@ -31,8 +31,8 @@ } public void testTransactionWithQuery() throws Exception { - List prevalentSystem = new LinkedList(); - Prevayler<List> prevayler = PrevaylerFactory.createTransientPrevayler(prevalentSystem); + List<String> prevalentSystem = new LinkedList<String>(); + Prevayler<List<String>> prevayler = PrevaylerFactory.createTransientPrevayler(prevalentSystem); assertEquals("abc", prevayler.execute(new MyTransaction())); assertEquals(1, (int) prevayler.execute(new MyQuery())); } |
From: Leonardo M. <mr...@gm...> - 2007-02-16 01:08:01
|
It has come to my attention that Prevayler developers might be interested in creating objects without calling constructors. That is why I'm posting the following announcement. I hope you find that useful. Best regards, Leonardo Mesquita ------------ The Objenesis Team proudly presents Objenesis 1.0 Objenesis is a framework that allows the creation of objects without calling constructors. Needing to instantiate an object without calling the constructor is a fairly specialized task, however there are certain cases when this is useful: * Serialization, Remoting and Persistence - Objects need to be instantiated and restored to a specific state, without invoking code. * Proxies, AOP Libraries and Mock Objects - Classes can be subclassed without needing to worry about the super() constructor. * Container Frameworks - Objects can be dynamically instantatiated in non-standard ways. The Java Serialization mechanism, one of the core cases where there is need to create objects without calling constructors, resorts to internal tricks to achieve this functionality. Many different projects have exploited that fact in clever ways, but since the "magic" is an internal JVM feature, most solutions lacked portability. Not anymore! With Objenesis, we have endeavoured to concetrate the many different approaches into a single, portable solution, keeping the developer from having to deal with the many different JVM implementations. Objenesis is released under the MIT license, and comes in two flavours: * Standard, which creates objects without calling constructors. * Serialized, which creates Serializable objects according to the Java Serialization specification: calling the no-arg constructor of the first non-serializable superclass. You can find out more at the project website: http://objenesis.googlecode.com/svn/docs/index.html |
From: Brian S. <br...@sl...> - 2006-10-20 18:52:26
|
Not directly relevant, but I thought this was interesting: The MySQL interview on slashdot mentioned the PBXT database engine, which is a plugin for MySQL. It uses a log-structured database format that seems promising: http://www.primebase.com/xt/index.html - Brian |
From: Klaus W. <kla...@gm...> - 2006-09-15 02:21:42
|
Hi Justin, I have redirected the dns for prevayler.org to my dedicated server (wuestefeld.name). It will take some time for the dns to trickle through the net. Then, we should be able to access prevayler svn on http://prevayler.org/svn/prevayler Also, there is a virtual host listening (right Vitor? ;), and redirecting requests to our priki. It is a Priki (the Prevalent wiki) back-end with a velocity front similar to: http://sovereigncomputing.net . The velocity page sources and images can be accessed here: http://wuestefeld.name/svn/prevayler/trunk/website/ And, thanks to Rodrigo Bamboo, everything you commit there will AUTOMATICALLY update the site. ;) Wilson Santos, graphic designer, is working on the upper and left gifs, using Prevayler blue and variations on the Prevayler logo. We can get cracking on all the rest. Vitor (cc) is always available for help on the use of Priki itself and new feature requests such as user logins, if we start getting too much spam. Mind you, Priki has some pretty advanced url-black-list technology and "rollback everything done from this IP" admin features. Lets chat about them some time. Hope this will finally allow the site to progress. See you, Klaus. |
From: Vitor F. P. <vit...@gm...> - 2006-09-10 14:14:58
|
Hi Justin, I fixed again. Sorry about that. On 9/9/06, Justin T. Sampson <ju...@kr...> wrote: > > Cool. > > But https access to svn seems broken again. :( > > Justin > > > On 9/9/06, Klaus Wuestefeld <kla...@gm...> wrote: > > > :) > > > > I have commited an Object Graph Traverser to our svn: > > > http://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/src/main/traverser/ > > (Justin might relocate it or remove it). > > > > It uses reflection to navigate through all objects directly or > > indirectly referenced by a given root object. This is how you use it: > > > > new ObjectGraphTraverser().traverse(rootObject, visitor); > > > > rootObject can be your prevalent system, for example, and visitor is > > something you implement with the following interface: > > > > public interface Visitor { > > boolean visit(ObjectPath path); > > } > > > > With the ObjectPath you can retrieve the current object being visited > > and the entire path from the rootObject to the current one, including > > all traversed field names. > > > > There is a demo in there you can run to see it working. It has a > > ClassCountingVisitor example that will count how many instances there > > are for each class in the graph. > > > > The Traverser itself is based on the db4o traverser, so its copyright > > is db4Objects' and it is licensed under the GPL. > > > > Maybe there was something like that out there already, I don't know. > > This one is pretty simple and straightforward (easy to play with and > > adapt). > > > > See you, Klaus. > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Prevayler-coders mailing list > Pre...@li... > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > -- Vitor Fernando Pamplona http://vitor.babaxp.org |
From: Justin T. S. <ju...@kr...> - 2006-09-10 02:35:24
|
Cool. But https access to svn seems broken again. :( Justin On 9/9/06, Klaus Wuestefeld <kla...@gm...> wrote: > :) > > I have commited an Object Graph Traverser to our svn: > http://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/src/main/traverser/ > (Justin might relocate it or remove it). > > It uses reflection to navigate through all objects directly or > indirectly referenced by a given root object. This is how you use it: > > new ObjectGraphTraverser().traverse(rootObject, visitor); > > rootObject can be your prevalent system, for example, and visitor is > something you implement with the following interface: > > public interface Visitor { > boolean visit(ObjectPath path); > } > > With the ObjectPath you can retrieve the current object being visited > and the entire path from the rootObject to the current one, including > all traversed field names. > > There is a demo in there you can run to see it working. It has a > ClassCountingVisitor example that will count how many instances there > are for each class in the graph. > > The Traverser itself is based on the db4o traverser, so its copyright > is db4Objects' and it is licensed under the GPL. > > Maybe there was something like that out there already, I don't know. > This one is pretty simple and straightforward (easy to play with and > adapt). > > See you, Klaus. |
From: Rodrigo B. de O. <rod...@gm...> - 2006-08-28 22:04:30
|
it works for me, Vitor. Thanks! On 8/28/06, Vitor Fernando Pamplona <vit...@gm...> wrote: > Hello everyone, > > Can you try again? I changed some config files to support SSL without tomcat > module. > > Sorry about that, > > []s > |
From: Vitor F. P. <vit...@gm...> - 2006-08-28 21:51:40
|
Hello everyone, Can you try again? I changed some config files to support SSL without tomcat module. Sorry about that, []s On 8/28/06, Justin T. Sampson <ju...@kr...> wrote: > > Hm! Yes, I did, and it didn't work; but trying again now it does work, > so it must have been a transient error. > > Thanks! > Justin > > > On 8/28/06, Klaus Wuestefeld <kla...@gm...> wrote: > > > It worked for me, did you try? > > > > https://wuestefeld.name:443/svn/prevayler/ > > > > See you, Klaus. > > > > > > On 8/28/06, Justin T. Sampson <ju...@kr...> wrote: > > > Ummm, but HTTP*S* is still not working? That URL is for HTTP on port > 443. :) > > > > > > Justin > > > > > > > > > On 8/28/06, Klaus Wuestefeld <kla...@gm...> wrote: > > > > > > > Working again. > > > > > > > > http://wuestefeld.name:443/svn/prevayler/ (Bad Request (SSL-enabled > > > > port) expected) > > > > > > > > Please let me know otherwise. > > > > > > > > We had activated virtual host stuff for apache and that broke ssl. > > > > > > > > We will now try to reactivate virtual hosts without breaking ssl, > but > > > > you might experience problems at the exact moment of our virtual > host > > > > experiments if you are very unlucky. > > > > > > > > See you, Klaus. > > > > > > > > > > > > On 8/27/06, Justin T. Sampson <ju...@kr...> wrote: > > > > > Would be nice... I haven't checked anything in since it broke. > What's > > > > > the status? > > > > > > > > > > Justin > > > > > > > > > > > > > > > On 8/26/06, Jacob Kjome <ho...@vi...> wrote: > > > > > > > > > > > So... no one is going to fix this? Committers should not have > to > > > > > > send their user/pass across the wire in plain text. This was > working > > > > > > before. I don't see why it should be that hard to get it > working again? > > > > > > > > > > > > > > > > > > Jake > > > > > > > > > > > > At 06:21 PM 8/17/2006, you wrote: > > > > > > > > > > > > > >For others, the latest code I've been working on is here: > > > > > > > >http://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > > > > > > > > > > > > > >The SSL link is broken... > > > > > > >https://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > > > > > > > > > > > > > >When I go there, I get the following message in a browser > popup > > > > > > >window in Firefox... > > > > > > > > > > > > > >"wuestefeld.name has sent an incorrect or unexpected message. > Error > > > > > > >Code: -12263" > > > > > > > > > > > > > > > > > > > > >TortoiseSVN reports... > > > > > > > > > > > > > >Error: PROPFIND request failed on > '/svn/prevayler/trunk/java/prevayler2' > > > > > > >Error: PROPFIND of '/svn/prevayler/trunk/java/prevayler2': SSL > > > > > > >negotiation failed: SSL error: unknown protocol ( > https://wuestefeld.name) > > > > > > > > > > > > > > > > > > > > >Can someone fix this? > > > > > > > > > > > > > >Jake > > > > > > > ------------------------------------------------------------------------- > > > Using Tomcat but need to do more? Need to support web services, > security? > > > Get stuff done quickly with pre-integrated technology to make your job > easier > > > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > > > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > > _______________________________________________ > > > Prevayler-coders mailing list > > > Pre...@li... > > > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > > > > > > > > ------------------------------------------------------------------------- > > Using Tomcat but need to do more? Need to support web services, > security? > > Get stuff done quickly with pre-integrated technology to make your job > easier > > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > _______________________________________________ > > Prevayler-coders mailing list > > Pre...@li... > > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Prevayler-coders mailing list > Pre...@li... > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > -- Vitor Fernando Pamplona http://vitor.babaxp.org |
From: Jacob K. <ho...@vi...> - 2006-08-28 21:50:21
|
Whoops. I didn't read the messages earlier in the thread. That makes mo= re sense now. Sorry about that. Jake Quoting "Justin T. Sampson" <ju...@kr...>: > Well yes, there's that; but I meant that I tried it after Klaus's > email today and still got an error. But yes, it is working now. :) > > Justin > > > On 8/28/06, Jacob Kjome <ho...@vi...> wrote: > > > Well, I wouldn't say it was just transient. It hasn't worked since a= t > least the > > 17th (the date of my original email) and I even tried it last night a= nd it > still > > didn't work. Seems to me someone must have done something such as > restarting > > the web server or applied some configuration change. In any case, I'= m glad > it > > works now :-) > > > > Jake > > > > Quoting "Justin T. Sampson" <ju...@kr...>: > > > > > Hm! Yes, I did, and it didn't work; but trying again now it does wo= rk, > > > so it must have been a transient error. > > > > > > Thanks! > > > Justin > > > > > > > > > On 8/28/06, Klaus Wuestefeld <kla...@gm...> wrote: > > > > > > > It worked for me, did you try? > > > > > > > > https://wuestefeld.name:443/svn/prevayler/ > > > > > > > > See you, Klaus. > > > > > > > > > > > > On 8/28/06, Justin T. Sampson <ju...@kr...> wrote: > > > > > Ummm, but HTTP*S* is still not working? That URL is for HTTP on= port > 443. > > > :) > > > > > > > > > > Justin > > > > > > > > > > > > > > > On 8/28/06, Klaus Wuestefeld <kla...@gm...> wrote: > > > > > > > > > > > Working again. > > > > > > > > > > > > http://wuestefeld.name:443/svn/prevayler/ (Bad Request (SSL-e= nabled > > > > > > port) expected) > > > > > > > > > > > > Please let me know otherwise. > > > > > > > > > > > > We had activated virtual host stuff for apache and that broke= ssl. > > > > > > > > > > > > We will now try to reactivate virtual hosts without breaking = ssl, > but > > > > > > you might experience problems at the exact moment of our virt= ual > host > > > > > > experiments if you are very unlucky. > > > > > > > > > > > > See you, Klaus. > > > > > > > > > > > > > > > > > > On 8/27/06, Justin T. Sampson <ju...@kr...> wrote: > > > > > > > Would be nice... I haven't checked anything in since it bro= ke. > What's > > > > > > > the status? > > > > > > > > > > > > > > Justin > > > > > > > > > > > > > > > > > > > > > On 8/26/06, Jacob Kjome <ho...@vi...> wrote: > > > > > > > > > > > > > > > So... no one is going to fix this? Committers should not= have > to > > > > > > > > send their user/pass across the wire in plain text. This= was > > > working > > > > > > > > before. I don't see why it should be that hard to get it > working > > > again? > > > > > > > > > > > > > > > > > > > > > > > > Jake > > > > > > > > > > > > > > > > At 06:21 PM 8/17/2006, you wrote: > > > > > > > > > > > > > > > > > >For others, the latest code I've been working on is h= ere: > > > > > > > > > >http://wuestefeld.name/svn/prevayler/trunk/java/preva= yler2/ > > > > > > > > > > > > > > > > > >The SSL link is broken... > > > > > > > > >https://wuestefeld.name/svn/prevayler/trunk/java/prevay= ler2/ > > > > > > > > > > > > > > > > > >When I go there, I get the following message in a brows= er > popup > > > > > > > > >window in Firefox... > > > > > > > > > > > > > > > > > >"wuestefeld.name has sent an incorrect or unexpected me= ssage. > > > Error > > > > > > > > >Code: -12263" > > > > > > > > > > > > > > > > > > > > > > > > > > >TortoiseSVN reports... > > > > > > > > > > > > > > > > > >Error: PROPFIND request failed on > > > '/svn/prevayler/trunk/java/prevayler2' > > > > > > > > >Error: PROPFIND of '/svn/prevayler/trunk/java/prevayler= 2': > SSL > > > > > > > > >negotiation failed: SSL error: unknown protocol > > > (https://wuestefeld.name) > > > > > > > > > > > > > > > > > > > > > > > > > > >Can someone fix this? > > > > > > > > > > > > > > > > > >Jake > > > > > > > > > > > -----------------------------------------------------------------------= -- > > > > > Using Tomcat but need to do more? Need to support web services, > security? > > > > > Get stuff done quickly with pre-integrated technology to make y= our > job > > > easier > > > > > Download IBM WebSphere Application Server v.1.0.1 based on Apac= he > > > Geronimo > > > > > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat= =3D121642 > > > > > _______________________________________________ > > > > > Prevayler-coders mailing list > > > > > Pre...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > > > > > > > > > > > > > > -----------------------------------------------------------------------= -- > > > > Using Tomcat but need to do more? Need to support web services, > security? > > > > Get stuff done quickly with pre-integrated technology to make you= r job > > > easier > > > > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > > > > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat= =3D121642 > > > > _______________________________________________ > > > > Prevayler-coders mailing list > > > > Pre...@li... > > > > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > > > > > > > > > > -------------------------------------------------------------------= ------ > > > Using Tomcat but need to do more? Need to support web services, sec= urity? > > > Get stuff done quickly with pre-integrated technology to make your = job > easier > > > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057= &dat=3D121642 > > > _______________________________________________ > > > Prevayler-coders mailing list > > > Pre...@li... > > > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > > > > > > > > > > > > > ---------------------------------------------------------------------= ---- > > Using Tomcat but need to do more? Need to support web services, secur= ity? > > Get stuff done quickly with pre-integrated technology to make your jo= b > easier > > Download IBM WebSphere Application Server v.1.0.1 based on Apache Ger= onimo > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&d= at=3D121642 > > _______________________________________________ > > Prevayler-coders mailing list > > Pre...@li... > > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > > > > -----------------------------------------------------------------------= -- > Using Tomcat but need to do more? Need to support web services, securit= y? > Get stuff done quickly with pre-integrated technology to make your job = easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geron= imo > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat= =3D121642 > _______________________________________________ > Prevayler-coders mailing list > Pre...@li... > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > |
From: Justin T. S. <ju...@kr...> - 2006-08-28 21:45:31
|
Well yes, there's that; but I meant that I tried it after Klaus's email today and still got an error. But yes, it is working now. :) Justin On 8/28/06, Jacob Kjome <ho...@vi...> wrote: > Well, I wouldn't say it was just transient. It hasn't worked since at least the > 17th (the date of my original email) and I even tried it last night and it still > didn't work. Seems to me someone must have done something such as restarting > the web server or applied some configuration change. In any case, I'm glad it > works now :-) > > Jake > > Quoting "Justin T. Sampson" <ju...@kr...>: > > > Hm! Yes, I did, and it didn't work; but trying again now it does work, > > so it must have been a transient error. > > > > Thanks! > > Justin > > > > > > On 8/28/06, Klaus Wuestefeld <kla...@gm...> wrote: > > > > > It worked for me, did you try? > > > > > > https://wuestefeld.name:443/svn/prevayler/ > > > > > > See you, Klaus. > > > > > > > > > On 8/28/06, Justin T. Sampson <ju...@kr...> wrote: > > > > Ummm, but HTTP*S* is still not working? That URL is for HTTP on port 443. > > :) > > > > > > > > Justin > > > > > > > > > > > > On 8/28/06, Klaus Wuestefeld <kla...@gm...> wrote: > > > > > > > > > Working again. > > > > > > > > > > http://wuestefeld.name:443/svn/prevayler/ (Bad Request (SSL-enabled > > > > > port) expected) > > > > > > > > > > Please let me know otherwise. > > > > > > > > > > We had activated virtual host stuff for apache and that broke ssl. > > > > > > > > > > We will now try to reactivate virtual hosts without breaking ssl, but > > > > > you might experience problems at the exact moment of our virtual host > > > > > experiments if you are very unlucky. > > > > > > > > > > See you, Klaus. > > > > > > > > > > > > > > > On 8/27/06, Justin T. Sampson <ju...@kr...> wrote: > > > > > > Would be nice... I haven't checked anything in since it broke. What's > > > > > > the status? > > > > > > > > > > > > Justin > > > > > > > > > > > > > > > > > > On 8/26/06, Jacob Kjome <ho...@vi...> wrote: > > > > > > > > > > > > > So... no one is going to fix this? Committers should not have to > > > > > > > send their user/pass across the wire in plain text. This was > > working > > > > > > > before. I don't see why it should be that hard to get it working > > again? > > > > > > > > > > > > > > > > > > > > > Jake > > > > > > > > > > > > > > At 06:21 PM 8/17/2006, you wrote: > > > > > > > > > > > > > > > >For others, the latest code I've been working on is here: > > > > > > > > >http://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > > > > > > > > > > > > > > > >The SSL link is broken... > > > > > > > >https://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > > > > > > > > > > > > > > > >When I go there, I get the following message in a browser popup > > > > > > > >window in Firefox... > > > > > > > > > > > > > > > >"wuestefeld.name has sent an incorrect or unexpected message. > > Error > > > > > > > >Code: -12263" > > > > > > > > > > > > > > > > > > > > > > > >TortoiseSVN reports... > > > > > > > > > > > > > > > >Error: PROPFIND request failed on > > '/svn/prevayler/trunk/java/prevayler2' > > > > > > > >Error: PROPFIND of '/svn/prevayler/trunk/java/prevayler2': SSL > > > > > > > >negotiation failed: SSL error: unknown protocol > > (https://wuestefeld.name) > > > > > > > > > > > > > > > > > > > > > > > >Can someone fix this? > > > > > > > > > > > > > > > >Jake > > > > > > > > ------------------------------------------------------------------------- > > > > Using Tomcat but need to do more? Need to support web services, security? > > > > Get stuff done quickly with pre-integrated technology to make your job > > easier > > > > Download IBM WebSphere Application Server v.1.0.1 based on Apache > > Geronimo > > > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > > > _______________________________________________ > > > > Prevayler-coders mailing list > > > > Pre...@li... > > > > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > > > > > > > > > > ------------------------------------------------------------------------- > > > Using Tomcat but need to do more? Need to support web services, security? > > > Get stuff done quickly with pre-integrated technology to make your job > > easier > > > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > > _______________________________________________ > > > Prevayler-coders mailing list > > > Pre...@li... > > > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > > > > > > > ------------------------------------------------------------------------- > > Using Tomcat but need to do more? Need to support web services, security? > > Get stuff done quickly with pre-integrated technology to make your job easier > > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > _______________________________________________ > > Prevayler-coders mailing list > > Pre...@li... > > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > > > > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Prevayler-coders mailing list > Pre...@li... > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > |
From: Jacob K. <ho...@vi...> - 2006-08-28 21:43:24
|
Well, I wouldn't say it was just transient. It hasn't worked since at le= ast the 17th (the date of my original email) and I even tried it last night and i= t still didn't work. Seems to me someone must have done something such as restar= ting the web server or applied some configuration change. In any case, I'm gl= ad it works now :-) Jake Quoting "Justin T. Sampson" <ju...@kr...>: > Hm! Yes, I did, and it didn't work; but trying again now it does work, > so it must have been a transient error. > > Thanks! > Justin > > > On 8/28/06, Klaus Wuestefeld <kla...@gm...> wrote: > > > It worked for me, did you try? > > > > https://wuestefeld.name:443/svn/prevayler/ > > > > See you, Klaus. > > > > > > On 8/28/06, Justin T. Sampson <ju...@kr...> wrote: > > > Ummm, but HTTP*S* is still not working? That URL is for HTTP on por= t 443. > :) > > > > > > Justin > > > > > > > > > On 8/28/06, Klaus Wuestefeld <kla...@gm...> wrote: > > > > > > > Working again. > > > > > > > > http://wuestefeld.name:443/svn/prevayler/ (Bad Request (SSL-enabl= ed > > > > port) expected) > > > > > > > > Please let me know otherwise. > > > > > > > > We had activated virtual host stuff for apache and that broke ssl= . > > > > > > > > We will now try to reactivate virtual hosts without breaking ssl,= but > > > > you might experience problems at the exact moment of our virtual = host > > > > experiments if you are very unlucky. > > > > > > > > See you, Klaus. > > > > > > > > > > > > On 8/27/06, Justin T. Sampson <ju...@kr...> wrote: > > > > > Would be nice... I haven't checked anything in since it broke. = What's > > > > > the status? > > > > > > > > > > Justin > > > > > > > > > > > > > > > On 8/26/06, Jacob Kjome <ho...@vi...> wrote: > > > > > > > > > > > So... no one is going to fix this? Committers should not hav= e to > > > > > > send their user/pass across the wire in plain text. This was > working > > > > > > before. I don't see why it should be that hard to get it wor= king > again? > > > > > > > > > > > > > > > > > > Jake > > > > > > > > > > > > At 06:21 PM 8/17/2006, you wrote: > > > > > > > > > > > > > >For others, the latest code I've been working on is here: > > > > > > > >http://wuestefeld.name/svn/prevayler/trunk/java/prevayler= 2/ > > > > > > > > > > > > > >The SSL link is broken... > > > > > > >https://wuestefeld.name/svn/prevayler/trunk/java/prevayler2= / > > > > > > > > > > > > > >When I go there, I get the following message in a browser p= opup > > > > > > >window in Firefox... > > > > > > > > > > > > > >"wuestefeld.name has sent an incorrect or unexpected messag= e. > Error > > > > > > >Code: -12263" > > > > > > > > > > > > > > > > > > > > >TortoiseSVN reports... > > > > > > > > > > > > > >Error: PROPFIND request failed on > '/svn/prevayler/trunk/java/prevayler2' > > > > > > >Error: PROPFIND of '/svn/prevayler/trunk/java/prevayler2': = SSL > > > > > > >negotiation failed: SSL error: unknown protocol > (https://wuestefeld.name) > > > > > > > > > > > > > > > > > > > > >Can someone fix this? > > > > > > > > > > > > > >Jake > > > > > > -------------------------------------------------------------------= ------ > > > Using Tomcat but need to do more? Need to support web services, sec= urity? > > > Get stuff done quickly with pre-integrated technology to make your = job > easier > > > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057= &dat=3D121642 > > > _______________________________________________ > > > Prevayler-coders mailing list > > > Pre...@li... > > > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > > > > > > > ---------------------------------------------------------------------= ---- > > Using Tomcat but need to do more? Need to support web services, secur= ity? > > Get stuff done quickly with pre-integrated technology to make your jo= b > easier > > Download IBM WebSphere Application Server v.1.0.1 based on Apache Ger= onimo > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&d= at=3D121642 > > _______________________________________________ > > Prevayler-coders mailing list > > Pre...@li... > > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > > > > -----------------------------------------------------------------------= -- > Using Tomcat but need to do more? Need to support web services, securit= y? > Get stuff done quickly with pre-integrated technology to make your job = easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geron= imo > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat= =3D121642 > _______________________________________________ > Prevayler-coders mailing list > Pre...@li... > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > |
From: Justin T. S. <ju...@kr...> - 2006-08-28 21:29:36
|
Hm! Yes, I did, and it didn't work; but trying again now it does work, so it must have been a transient error. Thanks! Justin On 8/28/06, Klaus Wuestefeld <kla...@gm...> wrote: > It worked for me, did you try? > > https://wuestefeld.name:443/svn/prevayler/ > > See you, Klaus. > > > On 8/28/06, Justin T. Sampson <ju...@kr...> wrote: > > Ummm, but HTTP*S* is still not working? That URL is for HTTP on port 443. :) > > > > Justin > > > > > > On 8/28/06, Klaus Wuestefeld <kla...@gm...> wrote: > > > > > Working again. > > > > > > http://wuestefeld.name:443/svn/prevayler/ (Bad Request (SSL-enabled > > > port) expected) > > > > > > Please let me know otherwise. > > > > > > We had activated virtual host stuff for apache and that broke ssl. > > > > > > We will now try to reactivate virtual hosts without breaking ssl, but > > > you might experience problems at the exact moment of our virtual host > > > experiments if you are very unlucky. > > > > > > See you, Klaus. > > > > > > > > > On 8/27/06, Justin T. Sampson <ju...@kr...> wrote: > > > > Would be nice... I haven't checked anything in since it broke. What's > > > > the status? > > > > > > > > Justin > > > > > > > > > > > > On 8/26/06, Jacob Kjome <ho...@vi...> wrote: > > > > > > > > > So... no one is going to fix this? Committers should not have to > > > > > send their user/pass across the wire in plain text. This was working > > > > > before. I don't see why it should be that hard to get it working again? > > > > > > > > > > > > > > > Jake > > > > > > > > > > At 06:21 PM 8/17/2006, you wrote: > > > > > > > > > > > >For others, the latest code I've been working on is here: > > > > > > >http://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > > > > > > > > > > > >The SSL link is broken... > > > > > >https://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > > > > > > > > > > > >When I go there, I get the following message in a browser popup > > > > > >window in Firefox... > > > > > > > > > > > >"wuestefeld.name has sent an incorrect or unexpected message. Error > > > > > >Code: -12263" > > > > > > > > > > > > > > > > > >TortoiseSVN reports... > > > > > > > > > > > >Error: PROPFIND request failed on '/svn/prevayler/trunk/java/prevayler2' > > > > > >Error: PROPFIND of '/svn/prevayler/trunk/java/prevayler2': SSL > > > > > >negotiation failed: SSL error: unknown protocol (https://wuestefeld.name) > > > > > > > > > > > > > > > > > >Can someone fix this? > > > > > > > > > > > >Jake > > > > ------------------------------------------------------------------------- > > Using Tomcat but need to do more? Need to support web services, security? > > Get stuff done quickly with pre-integrated technology to make your job easier > > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > _______________________________________________ > > Prevayler-coders mailing list > > Pre...@li... > > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Prevayler-coders mailing list > Pre...@li... > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > |
From: Klaus W. <kla...@gm...> - 2006-08-28 21:05:17
|
It worked for me, did you try? https://wuestefeld.name:443/svn/prevayler/ See you, Klaus. On 8/28/06, Justin T. Sampson <ju...@kr...> wrote: > Ummm, but HTTP*S* is still not working? That URL is for HTTP on port 443. :) > > Justin > > > On 8/28/06, Klaus Wuestefeld <kla...@gm...> wrote: > > > Working again. > > > > http://wuestefeld.name:443/svn/prevayler/ (Bad Request (SSL-enabled > > port) expected) > > > > Please let me know otherwise. > > > > We had activated virtual host stuff for apache and that broke ssl. > > > > We will now try to reactivate virtual hosts without breaking ssl, but > > you might experience problems at the exact moment of our virtual host > > experiments if you are very unlucky. > > > > See you, Klaus. > > > > > > On 8/27/06, Justin T. Sampson <ju...@kr...> wrote: > > > Would be nice... I haven't checked anything in since it broke. What's > > > the status? > > > > > > Justin > > > > > > > > > On 8/26/06, Jacob Kjome <ho...@vi...> wrote: > > > > > > > So... no one is going to fix this? Committers should not have to > > > > send their user/pass across the wire in plain text. This was working > > > > before. I don't see why it should be that hard to get it working again? > > > > > > > > > > > > Jake > > > > > > > > At 06:21 PM 8/17/2006, you wrote: > > > > > > > > > >For others, the latest code I've been working on is here: > > > > > >http://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > > > > > > > > > >The SSL link is broken... > > > > >https://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > > > > > > > > > >When I go there, I get the following message in a browser popup > > > > >window in Firefox... > > > > > > > > > >"wuestefeld.name has sent an incorrect or unexpected message. Error > > > > >Code: -12263" > > > > > > > > > > > > > > >TortoiseSVN reports... > > > > > > > > > >Error: PROPFIND request failed on '/svn/prevayler/trunk/java/prevayler2' > > > > >Error: PROPFIND of '/svn/prevayler/trunk/java/prevayler2': SSL > > > > >negotiation failed: SSL error: unknown protocol (https://wuestefeld.name) > > > > > > > > > > > > > > >Can someone fix this? > > > > > > > > > >Jake > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Prevayler-coders mailing list > Pre...@li... > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > |
From: Justin T. S. <ju...@kr...> - 2006-08-28 21:02:16
|
Ummm, but HTTP*S* is still not working? That URL is for HTTP on port 443. :) Justin On 8/28/06, Klaus Wuestefeld <kla...@gm...> wrote: > Working again. > > http://wuestefeld.name:443/svn/prevayler/ (Bad Request (SSL-enabled > port) expected) > > Please let me know otherwise. > > We had activated virtual host stuff for apache and that broke ssl. > > We will now try to reactivate virtual hosts without breaking ssl, but > you might experience problems at the exact moment of our virtual host > experiments if you are very unlucky. > > See you, Klaus. > > > On 8/27/06, Justin T. Sampson <ju...@kr...> wrote: > > Would be nice... I haven't checked anything in since it broke. What's > > the status? > > > > Justin > > > > > > On 8/26/06, Jacob Kjome <ho...@vi...> wrote: > > > > > So... no one is going to fix this? Committers should not have to > > > send their user/pass across the wire in plain text. This was working > > > before. I don't see why it should be that hard to get it working again? > > > > > > > > > Jake > > > > > > At 06:21 PM 8/17/2006, you wrote: > > > > > > > >For others, the latest code I've been working on is here: > > > > >http://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > > > > > > > >The SSL link is broken... > > > >https://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > > > > > > > >When I go there, I get the following message in a browser popup > > > >window in Firefox... > > > > > > > >"wuestefeld.name has sent an incorrect or unexpected message. Error > > > >Code: -12263" > > > > > > > > > > > >TortoiseSVN reports... > > > > > > > >Error: PROPFIND request failed on '/svn/prevayler/trunk/java/prevayler2' > > > >Error: PROPFIND of '/svn/prevayler/trunk/java/prevayler2': SSL > > > >negotiation failed: SSL error: unknown protocol (https://wuestefeld.name) > > > > > > > > > > > >Can someone fix this? > > > > > > > >Jake |
From: Klaus W. <kla...@gm...> - 2006-08-28 20:35:06
|
Working again. http://wuestefeld.name:443/svn/prevayler/ (Bad Request (SSL-enabled port) expected) Please let me know otherwise. We had activated virtual host stuff for apache and that broke ssl. We will now try to reactivate virtual hosts without breaking ssl, but you might experience problems at the exact moment of our virtual host experiments if you are very unlucky. See you, Klaus. On 8/27/06, Justin T. Sampson <ju...@kr...> wrote: > Would be nice... I haven't checked anything in since it broke. What's > the status? > > Justin > > > On 8/26/06, Jacob Kjome <ho...@vi...> wrote: > > > So... no one is going to fix this? Committers should not have to > > send their user/pass across the wire in plain text. This was working > > before. I don't see why it should be that hard to get it working again? > > > > > > Jake > > > > At 06:21 PM 8/17/2006, you wrote: > > > > > >For others, the latest code I've been working on is here: > > > >http://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > > > > > >The SSL link is broken... > > >https://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > > > > > >When I go there, I get the following message in a browser popup > > >window in Firefox... > > > > > >"wuestefeld.name has sent an incorrect or unexpected message. Error > > >Code: -12263" > > > > > > > > >TortoiseSVN reports... > > > > > >Error: PROPFIND request failed on '/svn/prevayler/trunk/java/prevayler2' > > >Error: PROPFIND of '/svn/prevayler/trunk/java/prevayler2': SSL > > >negotiation failed: SSL error: unknown protocol (https://wuestefeld.name) > > > > > > > > >Can someone fix this? > > > > > >Jake > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Prevayler-coders mailing list > Pre...@li... > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > |
From: Justin T. S. <ju...@kr...> - 2006-08-27 05:56:15
|
Would be nice... I haven't checked anything in since it broke. What's the status? Justin On 8/26/06, Jacob Kjome <ho...@vi...> wrote: > So... no one is going to fix this? Committers should not have to > send their user/pass across the wire in plain text. This was working > before. I don't see why it should be that hard to get it working again? > > > Jake > > At 06:21 PM 8/17/2006, you wrote: > > > >For others, the latest code I've been working on is here: > > >http://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > > > >The SSL link is broken... > >https://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > > > >When I go there, I get the following message in a browser popup > >window in Firefox... > > > >"wuestefeld.name has sent an incorrect or unexpected message. Error > >Code: -12263" > > > > > >TortoiseSVN reports... > > > >Error: PROPFIND request failed on '/svn/prevayler/trunk/java/prevayler2' > >Error: PROPFIND of '/svn/prevayler/trunk/java/prevayler2': SSL > >negotiation failed: SSL error: unknown protocol (https://wuestefeld.name) > > > > > >Can someone fix this? > > > >Jake |
From: Jacob K. <ho...@vi...> - 2006-08-27 05:34:34
|
So... no one is going to fix this? Committers should not have to send their user/pass across the wire in plain text. This was working before. I don't see why it should be that hard to get it working again? Jake At 06:21 PM 8/17/2006, you wrote: > > > > >For others, the latest code I've been working on is here: > >http://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > >The SSL link is broken... >https://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > >When I go there, I get the following message in a browser popup >window in Firefox... > >"wuestefeld.name has sent an incorrect or unexpected message. Error >Code: -12263" > > >TortoiseSVN reports... > >Error: PROPFIND request failed on '/svn/prevayler/trunk/java/prevayler2' >Error: PROPFIND of '/svn/prevayler/trunk/java/prevayler2': SSL >negotiation failed: SSL error: unknown protocol (https://wuestefeld.name) > > >Can someone fix this? > >Jake > > >------------------------------------------------------------------------- >Using Tomcat but need to do more? Need to support web services, security? >Get stuff done quickly with pre-integrated technology to make your job easier >Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >_______________________________________________ >Prevayler-coders mailing list >Pre...@li... >https://lists.sourceforge.net/lists/listinfo/prevayler-coders |
From: Jacob K. <ho...@vi...> - 2006-08-17 23:21:05
|
> >For others, the latest code I've been working on is here: >http://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ The SSL link is broken... https://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ When I go there, I get the following message in a browser popup window in Firefox... "wuestefeld.name has sent an incorrect or unexpected message. Error Code: -12263" TortoiseSVN reports... Error: PROPFIND request failed on '/svn/prevayler/trunk/java/prevayler2' Error: PROPFIND of '/svn/prevayler/trunk/java/prevayler2': SSL negotiation failed: SSL error: unknown protocol (https://wuestefeld.name) Can someone fix this? Jake |
From: Justin T. S. <ju...@kr...> - 2006-08-17 17:33:52
|
Hi Philippe, I hope you don't mind moving this to prevayler-coders... On 8/17/06, Philippe Van Dyck <pv...@gm...> wrote: > I will play with JGroups and Prevayler during September, do you think the > generic version will be stabilized ? Probably not -- I'm not sure I'll have much time to work on it this month. There are still some things to play with to figure out the best way. The generic signatures themselves are pretty well set, but some classes will be renamed and moved around a little. The annotations are the least certain; I've tried three or four approaches so far, and the current is the least nasty. The event listener implementation works nicely, but there are certainly other ways to do it. Etc. :) None of the new stuff is documented very well yet. For what purpose and in what context are you doing this work? Lots of people are interested, and some have played with JGroups and Prevayler before. I've got my own strong opinions about implementation, of course. :) Happy to have experimentation going on. > P.S.: Some ideas/remarks Thanks, code review is much appreciated! For others, the latest code I've been working on is here: http://wuestefeld.name/svn/prevayler/trunk/java/prevayler2/ > org.prevayler.foundation.serialization.XStreamSerializer > writeObject() shouldn't writer be closed in a finally block ? It's not necessary. The output stream doesn't need to be closed (does no harm if it is, though -- see the Serializer javadoc), and the writer will just be garbage collected anyway. The flush is necessary, since a writer buffers multi-byte characters. > org.prevayler.implementation.PrevalentSystemGuard > dispatchEvents() may synchronize on _listeners *outside* of the loop and not > in dispatch() ? I suppose it could, but I think that would make the code more complicated for little or no benefit... If there are very few events, it really doesn't matter, and if there are many events, it might actually be better to allow more concurrency by only grabbing the lock per-event. Actually, now that you've got me thinking in these terms, the current locking is actually even too broad -- if any event listener does something slow, then all event dispatching for other client code will be blocked. It would be better to just synchronize around getting the list of relevant listeners, but release the lock when actually calling the listener itself. > org.prevayler.implementation.journal.PersistentJournal > recoverPendingTransactions() performance can be improved by moving the > try-catch statement outside of the loop ? No. First, there is no performance impact whatsoever for a try-catch when no exception is thrown. Second, in this case, it's actually important to the logic of that method that it be inside the loop -- maybe it's not terribly clear, but the exception handler opens the next file, if there is one, and continues the loop, or breaks the loop if there is no next file. > org.prevayler.implementation.journal.TransientJournal > update() is (initialTransaction - _initialTransaction) > Integer.MAX_VALUE > so unlikely ? Yes. :) TransientJournal stores transactions in an ArrayList, so it can't hold more than Integer.MAX_VALUE transactions anyway. > org.prevayler.foundation.serialization.JavaSerialize<T> > implements Serializer<T> - what about JavaSerialize<T extends Serializable> > implements Serializer<T> (impact)? That would prevent expressing something like JavaSerializer<GenericTransaction>, as required for the journal. Not all transaction classes are Serializable, since someone may be using XStream or a custom serializer. Serializable really isn't a type, it's a marker for an implementation detail of a class, so it's rarely appropriate to use it as, say, a generic constraint, or a method parameter type. Cheers, Justin |
From: Klaus W. <kla...@gm...> - 2006-08-14 15:53:19
|
Prevayler3 requires the (don't reinvent the) wheel project. It is on the same svn server .../svn/wheel . That particular development of Prev3 is still seminal and was discontinued, in favour of Justin's developments. Feel free to use it anyway. See you, Klaus. On 8/14/06, phil vd <pv...@op...> wrote: > Hello, > > I would like to test and adapt to Prevayler 3 the JGroups based TOBroadcastPrevalenceLayer proposed by Gustavo Maciel Dias Vieira a couple of months ago but it seems that the Prevayler 3 SVN repository is incomplete (no compilation possible since the prevalence package is absent). > > Could you please tell me where I could find a complete version of Prevayler 3 ? > > Best Regards, > > Philippe Van Dyck > > -- > _______________________________________________ > Surf the Web in a faster, safer and easier way: > Download Opera 9 at http://www.opera.com > > Powered by Outblaze > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Prevayler-coders mailing list > Pre...@li... > https://lists.sourceforge.net/lists/listinfo/prevayler-coders > |
From: phil v. <pv...@op...> - 2006-08-14 12:22:22
|
Hello, I would like to test and adapt to Prevayler 3 the JGroups based TOBroadcast= PrevalenceLayer proposed by Gustavo Maciel Dias Vieira a couple of months a= go but it seems that the Prevayler 3 SVN repository is incomplete (no compi= lation possible since the prevalence package is absent). Could you please tell me where I could find a complete version of Prevayler= 3 ? Best Regards, Philippe Van Dyck --=20 _______________________________________________ Surf the Web in a faster, safer and easier way: Download Opera 9 at http://www.opera.com Powered by Outblaze |
From: <mc...@hm...> - 2006-06-18 21:10:30
|
> What version of Prevayler are you > using? I'm using the 2.03 from CVS, grabbed between the 2.02 release and the 2.3 beta release. > What kind of application is it? It's a "master server/replicated client" kind of application. > If I do move the code around I can leave the same package structure so > client code is unaffected. Sounds good enough for me. > But if it's being used seriously in > production then I might just maintain it where it is. It's pretty serious for me. ;) But I think the keep of the package structure is sufficient. |