You can subscribe to this list here.
2007 |
Jan
(56) |
Feb
(10) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
---|
From: Alan M. <a_j...@ya...> - 2007-01-15 08:17:27
|
John, I am working my way through the code but will probably have a few questions for you. For now I can see the following immediate questions: * the code is a bit hard to read in many places owing to formatting - would you have any objection if I ran the classes through GNU indent or similar ? If necessary we can add a svn hook to do that sort of thing automatically. * to make the licensing a bit clear I'd suggest that you place a license in the root directory and add a template to each Java file (e.g., with a comment, distributed as per shipped license or similar) - I see you have gone for LGPL so we should adopt those conventions perhaps. * a small detail perhaps but I noticed the use of protected logger members (e.g., in HttpMessage) - I personally feel it would be better to use private (static) logger members in each class since the logger name is based on the java package hierarchy and a logger per class makes things more intuitive (and easier to configure) with the logger configuration. * finally the classes might benefit from a mild dose of refactoring (e.g., I think that Proxy is a bit too big and has inner classes within where delegation model might be more appropriate etc.) - I could go ahead and model this myself without changing any functionality but don't want to make you too nervous about what I'm doing here - shall we discuss this in more detail ? all the best, Alan. --------------------------------------------------- You can find my GPG key (a_j...@ya...) at ETH PGP Keyserver: http://www.tik.ee.ethz.ch/~pgp/ --------------------------------------------------- --------------------------------- Der neue Internet Explorer 7 in deutscher Ausführung ist da! |
From: Alan M. <a_j...@ya...> - 2007-01-14 12:22:49
|
John, Thanks I will start looking at the code when I get a chance. Below are some spontaneous remarks.... > I put a makefile in the root so my :make will still > produce the desired > results, and added a quick distribution method to > the build.xml so I can > easily get updated javadocs onto our web site. I presume that we would use ant only - do we really to bother with make (aside from anything else you might want to use it for) ? > Alan, > Take a look at it and see if you can figure out what > I was thinking, [snip] I'll play around with it can ask the relevant questions later ;) > I have not even looking into adding JUnit support > but realize a test suite > would be of great value for this thing as we chug > away at it. Junit good, in this case probably essential as we (and end-users) need to be sure of quality and test coverage. If you like, consider writing the unit tests first and do the implementation later, that way you get an early idea of how idiomatic the library code will be... > 1. I am absolutely addicted to the Jakarta commons > and I'm even considering > naming a child Jakarta, so we are using the > HttpClient library from that > Apache project, it was easy and already in other > parts of my application at > the time. However, this should not become a weight > around our necks, it is > not so difficult to use the standard java > URLConnection handlers to pull the > required data back, so if someone comes along and > decides those guys are > communists and the implementation should not be > dependent on that, let them > enjoy freeing us from the dependency. Have you considered using a facade and hidding the HttpClient stuff behind it (that way it can be replaced easier later if no longer required?) - this might be a secondary consideration though because the concept still requires proving.... > 2. I also chose to use log4j for logging. I really > like log4j, [snip] log4j also good! Some Apache projects prefer (and sometimes irritatingly enforce) the use of another logger e.g., commons-logging etc. but I still think we should stick with log4j. > 3. the logic for applying filters and processors may > need some review, in a > few places I wasn't sure which method to call so I > tended to call the method > I had the most data available to send, which may > prove shallow and > unpredictable during implementations, I will try to > organize a way to > articulate the logic as it exists today. Perhaps design first (e.g., UML) and implement later ? That way we can see what you are thinking (literally!) BTW: I use the Umbrello UML editor > And that is my typing quota for the day, good luck > and thanks again for > joining this effort, may you all become immortal for > your efforts, women > will flock to you, children will sing songs of > praise, Porsche will name a > car after you, and one day you will evolve into pure > energy and come to know > the true nature of God. Or something like that :) ...failing that women will flee us, children will cry in our presence...no wait, that's what happens at the moment. ok things can only get better ;) atb, A. --------------------------------------------------- You can find my GPG key (a_j...@ya...) at ETH PGP Keyserver: http://www.tik.ee.ethz.ch/~pgp/ --------------------------------------------------- ___________________________________________________________ Der frühe Vogel fängt den Wurm. Hier gelangen Sie zum neuen Yahoo! Mail: http://mail.yahoo.de |
From: John S. <jo...@we...> - 2007-01-13 23:29:39
|
All, The svn repository is looking pretty good now, Juan has converted my little mess into one big mess, and you can still compile on the command line. I put a makefile in the root so my :make will still produce the desired results, and added a quick distribution method to the build.xml so I can easily get updated javadocs onto our web site. Alan, Take a look at it and see if you can figure out what I was thinking, the Proxy.java contains all the nonsense I was trying to do when a CONNECT method is seen. I will be out of pocket most of the day tomorrow, but will be back in action on Monday feel free to verbosely query me on any code that is not well documented and not very intuitive. Juan has already fixed two issues he found in the base, and I am sure some others are just hanging around. ;) I will try and start documenting the interface as I have been using it and adding some inline examples/documentation so the javadoc can be a single point of reference, as well as a brief how to of some sort. Juan, I have not even looking into adding JUnit support but realize a test suite would be of great value for this thing as we chug away at it. Do you feel like adding a couple of hooks or test routines that I can fill in with you? I originally envisioned writing a separate method to test all the listed features but never got around to it. Something that would let us run a series of quick tests to ensure functionality would help after a build. I wasn't sure if it would require a separate class that throws http connections at a running proxy and checks for success/failure, or what? Any thoughts on this line? We are off to a great start, hopefully we can finish up the HTTP/1.0 support soon and get this thing rolled out for others to abuse and start reporting problems with. Hopefully, once those bugs start stabilizing we can start trying out all the HTTP/1.1 features. I didn't necessarily make a conscious effort to NOT support HTTP/1.1 but whenever faced with an implementation option that called for too much more work to support a new feature of 1.1 vs 1.0 I opted for the latter. I am really surprised this library hasn't come around sooner, I hope it can be plugged in easily enough to get more applications using it, and thus more bug fixes and features supported in the future. Some design decisions to note: 1. I am absolutely addicted to the Jakarta commons and I'm even considering naming a child Jakarta, so we are using the HttpClient library from that Apache project, it was easy and already in other parts of my application at the time. However, this should not become a weight around our necks, it is not so difficult to use the standard java URLConnection handlers to pull the required data back, so if someone comes along and decides those guys are communists and the implementation should not be dependent on that, let them enjoy freeing us from the dependency. 2. I also chose to use log4j for logging. I really like log4j, and see no reason to stop liking it, I believe there are techniques to replace it if someone is so inclined, but please do not do it to the project svn repository, that would suck. 3. the logic for applying filters and processors may need some review, in a few places I wasn't sure which method to call so I tended to call the method I had the most data available to send, which may prove shallow and unpredictable during implementations, I will try to organize a way to articulate the logic as it exists today. And that is my typing quota for the day, good luck and thanks again for joining this effort, may you all become immortal for your efforts, women will flock to you, children will sing songs of praise, Porsche will name a car after you, and one day you will evolve into pure energy and come to know the true nature of God. Or something like that :) Thanks, John |
From: John S. <jo...@we...> - 2007-01-13 21:31:20
|
Juan, I fixed it, looks like 1.7.0 is very picky and just doesn=92t like the = spaces, I am adding the javadoc installation and sourceforge upload process now, = I will submit it all to the svn soon Thanks, John =20 =20 _____ =20 From: wpg...@li... [mailto:wpg...@li...] On Behalf = Of Juan Gonz=E1lez Sent: Saturday, January 13, 2007 2:49 PM To: wpg...@li... Subject: Re: [Wpg-proxy-development] SSL for Java HTTP proxy library =20 Confirmed, I can reproduce it with ant 1.7.0. I'm looking at the new way = to include headers for the javadoc task. 2007/1/13, Juan Gonz=E1lez < ju...@ag... = <mailto:ju...@ag...> >: It may have something to do with ant, my versions are : Apache Ant version 1.6.5 compiled on July 5 2006 java version "1.5.0_06" I'm downloading 1.7 to see if I can reproduce it... =20 2007/1/13, John Southerland <jo...@we...>: Juan, I am getting this error: -javadoc-build: [javadoc] Warning: Leaving out empty argument '-windowtitle' [javadoc] Generating Javadoc [javadoc] Javadoc execution [javadoc] javadoc: error - Illegal package name: "<a"=20 [javadoc] javadoc: error - Illegal package name: "href=3D" [javadoc] javadoc: error - Illegal package name: " <http://sourceforge.net/projects/wpg-proxy/> http://sourceforge.net/projects/wpg-proxy/ " [javadoc] javadoc: error - Illegal package name: ">Java" [javadoc] javadoc: error - Illegal package name: "Page</a><br><a" [javadoc] javadoc: error - Illegal package name: "href=3D"=20 [javadoc] javadoc: error - Illegal package name: = "http://sourceforge.net" [javadoc] javadoc: error - Illegal package name: "><img"=20 [javadoc] javadoc: error - Illegal package name: "src=3D"=20 [javadoc] javadoc: error - Illegal package name: "http://sflogo.sourceforge.net/sflogo.php?group_id=3D185351 <http://sflogo.sourceforge.net/sflogo.php?group_id=3D185351&type=3D4> = &type=3D4 " [javadoc] javadoc: error - Illegal package name: "width=3D" [javadoc] javadoc: error - Illegal package name: "125" [javadoc] javadoc: error - Illegal package name: "height=3D" [javadoc] javadoc: error - Illegal package name: "37"=20 [javadoc] javadoc: error - Illegal package name: "border=3D" [javadoc] javadoc: error - Illegal package name: "0" [javadoc] javadoc: error - Illegal package name: "alt=3D" [javadoc] javadoc: error - Illegal package name: " SourceForge.net = Logo" [javadoc] javadoc: error - Illegal package name: "/></a>" [javadoc] javadoc: error - Illegal package name: "" [javadoc] Loading source files for package HTTP...=20 [javadoc] javadoc: warning - No source files for package HTTP [javadoc] Loading source files for package Proxy... [javadoc] Loading source files for package Library... [javadoc] javadoc: warning - No source files for package Proxy=20 [javadoc] javadoc: warning - No source files for package Library [javadoc] Loading source files for package Project... [javadoc] javadoc: warning - No source files for package Project [javadoc] Loading source files for package com.wpg.proxy... [javadoc] 20 errors [javadoc] 4 warnings BUILD FAILED /home/jbsouthe/code/wpg-proxy/trunk/wpg-proxy/build.xml:11: Javadoc = returned 1 This may be a version mismatch, I am running ant version 1.7.0 and = javadoc from the sdk version 1.5.0_10-b03 on linux What versions are you running? ________________________________________ From: wpg...@li... [mailto:wpg...@li... <mailto:wpg...@li...> ] On Behalf = Of Opsi dao Sent: Saturday, January 13, 2007 2:18 PM To: wpg...@li...=20 Subject: Re: [Wpg-proxy-development] SSL for Java HTTP proxy library=20 John, do you still find problems building from the command line? 2007/1/13, John Southerland < jo...@we... <mailto:jo...@we...> >: Juan, Can you add your build libraries and such to the svn repository?=20 I am getting errors when I try to build on the command line, and it = seems to reorg deleted my libraries, it is a little ugly for us command line guys = ;) Thanks, John John Buren Southerland Principal Consultant=20 Web Performance Group 801.467.8090(office) 214.734.8099(cell) jo...@we...=20 ________________________________________ From: wpg...@li... [mailto: wpg...@li... <mailto:wpg...@li...> ] On Behalf = Of Juan Gonz=E1lez Sent: Saturday, January 13, 2007 12:41 PM To: wpg...@li... Subject: Re: [Wpg-proxy-development] SSL for Java HTTP proxy library=20 Hi there, well, i'm not an usual IM user, but as everybody I keep an account on = MSN for emergencies ;) MSN : op...@ho... Cheers 2007/1/13, John Southerland < jo...@we...>: Alan, Your in!that sounds great, I have been killing myself trying to figure = out=20 the SSL stuff and this should teach me quite a bit :)=20 Please join the developers mailing list so we can track these = discussions a little better. I have never used skype, but I will look into it, I do however use = instant messenger and have ids on all the major providers,=20 AIM =3D=3D JohnSoutherland5 Yahoo =3D jbsouthe MSN =3D jbs...@ho... Maybe we can start with that, and see if we need to speak in person.I = can also just go ahead and call you direct if need be.=20 Once you and Juan, the other developer joining us, join the mailing list = I will send out an email detailing what I envisioned and then maybe we can toss it around and spit out something we all need and see as practicle.=20 I originally just used a library called ExProxy written but not = opensourced by a man in France.He has somewhat disappeared off the planet and is unreachable.I always thought this should be opensourced rather than just = free so I started this project.The library is based mainly on his.It may prove helpful to take a look at his implementation, but we can do = anything we like. I was hoping to verify all the HTTP/1.0 functionality as well as SSL = support via the CONNECT method for version 1.0.0, then start adding HTTP/1.1 TLS upgrade and misc support for version 1.1.0 or 2.0.0 as we find = appropriate. Well looks like I spelled it out here, so I will just cc Juan and the=20 mailing list to ensure it is searchable one day ;) Later, John John Buren Southerland Principal Consultant Web Performance Group 801.467.8090(office) 214.734.8099(cell) jo...@we... -------------------------------------------------------------------------= Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share = your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=3Djoin.php <http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV> &p=3Dsourceforge&CID=3DDEVDEV=20 _______________________________________________ Wpg-proxy-development mailing list Wpg...@li... https://lists.sourceforge.net/lists/listinfo/wpg-proxy-development -------------------------------------------------------------------------= Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share = your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=3Djoin.php <http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV> &p=3Dsourceforge&CID=3DDEVDEV _______________________________________________ Wpg-proxy-development mailing list Wpg...@li... https://lists.sourceforge.net/lists/listinfo/wpg-proxy-development=20 =20 |
From: <ju...@ag...> - 2007-01-13 19:48:50
|
Confirmed, I can reproduce it with ant 1.7.0. I'm looking at the new way to include headers for the javadoc task. 2007/1/13, Juan Gonz=E1lez <ju...@ag...>: > > It may have something to do with ant, my versions are : > > Apache Ant version 1.6.5 compiled on July 5 2006 > java version "1.5.0_06" > > I'm downloading 1.7 to see if I can reproduce it... > > 2007/1/13, John Southerland <jo...@we...>: > > > > Juan, > > I am getting this error: > > -javadoc-build: > > [javadoc] Warning: Leaving out empty argument '-windowtitle' > > [javadoc] Generating Javadoc > > [javadoc] Javadoc execution > > [javadoc] javadoc: error - Illegal package name: "<a" > > [javadoc] javadoc: error - Illegal package name: "href=3D" > > [javadoc] javadoc: error - Illegal package name: > > "http://sourceforge.net/projects/wpg-proxy/ " > > [javadoc] javadoc: error - Illegal package name: ">Java" > > [javadoc] javadoc: error - Illegal package name: "Page</a><br><a" > > [javadoc] javadoc: error - Illegal package name: "href=3D" > > [javadoc] javadoc: error - Illegal package name: " > > http://sourceforge.net" > > [javadoc] javadoc: error - Illegal package name: "><img" > > [javadoc] javadoc: error - Illegal package name: "src=3D" > > [javadoc] javadoc: error - Illegal package name: > > "http://sflogo.sourceforge.net/sflogo.php?group_id=3D185351&type=3D4" > > [javadoc] javadoc: error - Illegal package name: "width=3D" > > [javadoc] javadoc: error - Illegal package name: "125" > > [javadoc] javadoc: error - Illegal package name: "height=3D" > > [javadoc] javadoc: error - Illegal package name: "37" > > [javadoc] javadoc: error - Illegal package name: "border=3D" > > [javadoc] javadoc: error - Illegal package name: "0" > > [javadoc] javadoc: error - Illegal package name: "alt=3D" > > [javadoc] javadoc: error - Illegal package name: " SourceForge.netLog= o" > > [javadoc] javadoc: error - Illegal package name: "/></a>" > > [javadoc] javadoc: error - Illegal package name: "" > > [javadoc] Loading source files for package HTTP... > > [javadoc] javadoc: warning - No source files for package HTTP > > [javadoc] Loading source files for package Proxy... > > [javadoc] Loading source files for package Library... > > [javadoc] javadoc: warning - No source files for package Proxy > > [javadoc] javadoc: warning - No source files for package Library > > [javadoc] Loading source files for package Project... > > [javadoc] javadoc: warning - No source files for package Project > > [javadoc] Loading source files for package com.wpg.proxy... > > [javadoc] 20 errors > > [javadoc] 4 warnings > > > > BUILD FAILED > > /home/jbsouthe/code/wpg-proxy/trunk/wpg-proxy/build.xml:11: Javadoc > > returned > > 1 > > > > This may be a version mismatch, I am running ant version 1.7.0 and > > javadoc > > from the sdk version 1.5.0_10-b03 on linux > > What versions are you running? > > > > > > ________________________________________ > > From: wpg...@li... > > [mailto:wpg...@li...] On Behalf > > Of > > Opsi dao > > Sent: Saturday, January 13, 2007 2:18 PM > > To: wpg...@li... > > Subject: Re: [Wpg-proxy-development] SSL for Java HTTP proxy library > > > > John, do you still find problems building from the command line? > > 2007/1/13, John Southerland <jo...@we...>: > > Juan, > > Can you add your build libraries and such to the svn repository? > > I am getting errors when I try to build on the command line, and it > > seems to > > reorg deleted my libraries, it is a little ugly for us command line guy= s > > ;) > > Thanks, John > > > > John Buren Southerland > > Principal Consultant > > Web Performance Group > > 801.467.8090(office) > > 214.734.8099(cell) > > jo...@we... > > > > > > > > > > > > ________________________________________ > > From: wpg...@li... > > [mailto:wpg...@li... ] On Behalf > > Of > > Juan Gonz=E1lez > > Sent: Saturday, January 13, 2007 12:41 PM > > To: wpg...@li... > > Subject: Re: [Wpg-proxy-development] SSL for Java HTTP proxy library > > > > Hi there, > > well, i'm not an usual IM user, but as everybody I keep an account on > > MSN > > for emergencies ;) > > > > MSN : op...@ho... > > > > Cheers > > 2007/1/13, John Southerland < jo...@we...>: > > Alan, > > Your in!that sounds great, I have been killing myself trying to figure > > out > > the SSL stuff and this should teach me quite a bit :) > > Please join the developers mailing list so we can track these > > discussions a > > little better. > > I have never used skype, but I will look into it, I do however use > > instant > > messenger and have ids on all the major providers, > > AIM =3D=3D JohnSoutherland5 > > Yahoo =3D jbsouthe > > MSN =3D jbs...@ho... > > Maybe we can start with that, and see if we need to speak in person.Ica= n > > also just go ahead and call you direct if need be. > > > > Once you and Juan, the other developer joining us, join the mailing lis= t > > I > > will send out an email detailing what I envisioned and then maybe we ca= n > > toss it around and spit out something we all need and see as practicle. > > > > I originally just used a library called ExProxy written but not > > opensourced > > by a man in France.He has somewhat disappeared off the planet and is > > unreachable.I always thought this should be opensourced rather than jus= t > > > > free so I started this project.The library is based mainly on his.It ma= y > > > > prove helpful to take a look at his implementation, but we can do > > anything > > we like. > > > > I was hoping to verify all the HTTP/1.0 functionality as well as SSL > > support > > via the CONNECT method for version 1.0.0, then start adding HTTP/1.1 TL= S > > upgrade and misc support for version 1.1.0 or 2.0.0 as we find > > appropriate. > > > > > > Well looks like I spelled it out here, so I will just cc Juan and the > > mailing list to ensure it is searchable one day ;) > > Later, John > > > > John Buren Southerland > > Principal Consultant > > Web Performance Group > > 801.467.8090(office) > > 214.734.8099(cell) > > jo...@we... > > > > > > > > -----------------------------------------------------------------------= -- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share > > your > > > > opinions on IT & business topics through brief surveys - and earn cash > > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID= =3DDEVDEV > > > > > > _______________________________________________ > > Wpg-proxy-development mailing list > > Wpg...@li... > > https://lists.sourceforge.net/lists/listinfo/wpg-proxy-development > > > > > > > > > > > > -----------------------------------------------------------------------= -- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share > > your > > opinions on IT & business topics through brief surveys - and earn cash > > > > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID= =3DDEVDEV > > _______________________________________________ > > Wpg-proxy-development mailing list > > Wpg...@li... > > https://lists.sourceforge.net/lists/listinfo/wpg-proxy-development > > > > |
From: <ju...@ag...> - 2007-01-13 19:41:38
|
It may have something to do with ant, my versions are : Apache Ant version 1.6.5 compiled on July 5 2006 java version "1.5.0_06" I'm downloading 1.7 to see if I can reproduce it... 2007/1/13, John Southerland <jo...@we...>: > > Juan, > I am getting this error: > -javadoc-build: > [javadoc] Warning: Leaving out empty argument '-windowtitle' > [javadoc] Generating Javadoc > [javadoc] Javadoc execution > [javadoc] javadoc: error - Illegal package name: "<a" > [javadoc] javadoc: error - Illegal package name: "href=3D" > [javadoc] javadoc: error - Illegal package name: > "http://sourceforge.net/projects/wpg-proxy/" > [javadoc] javadoc: error - Illegal package name: ">Java" > [javadoc] javadoc: error - Illegal package name: "Page</a><br><a" > [javadoc] javadoc: error - Illegal package name: "href=3D" > [javadoc] javadoc: error - Illegal package name: "http://sourceforge.ne= t > " > [javadoc] javadoc: error - Illegal package name: "><img" > [javadoc] javadoc: error - Illegal package name: "src=3D" > [javadoc] javadoc: error - Illegal package name: > "http://sflogo.sourceforge.net/sflogo.php?group_id=3D185351&type=3D4" > [javadoc] javadoc: error - Illegal package name: "width=3D" > [javadoc] javadoc: error - Illegal package name: "125" > [javadoc] javadoc: error - Illegal package name: "height=3D" > [javadoc] javadoc: error - Illegal package name: "37" > [javadoc] javadoc: error - Illegal package name: "border=3D" > [javadoc] javadoc: error - Illegal package name: "0" > [javadoc] javadoc: error - Illegal package name: "alt=3D" > [javadoc] javadoc: error - Illegal package name: "SourceForge.net Logo" > [javadoc] javadoc: error - Illegal package name: "/></a>" > [javadoc] javadoc: error - Illegal package name: "" > [javadoc] Loading source files for package HTTP... > [javadoc] javadoc: warning - No source files for package HTTP > [javadoc] Loading source files for package Proxy... > [javadoc] Loading source files for package Library... > [javadoc] javadoc: warning - No source files for package Proxy > [javadoc] javadoc: warning - No source files for package Library > [javadoc] Loading source files for package Project... > [javadoc] javadoc: warning - No source files for package Project > [javadoc] Loading source files for package com.wpg.proxy... > [javadoc] 20 errors > [javadoc] 4 warnings > > BUILD FAILED > /home/jbsouthe/code/wpg-proxy/trunk/wpg-proxy/build.xml:11: Javadoc > returned > 1 > > This may be a version mismatch, I am running ant version 1.7.0 and javado= c > from the sdk version 1.5.0_10-b03 on linux > What versions are you running? > > > ________________________________________ > From: wpg...@li... > [mailto:wpg...@li...] On Behalf Of > Opsi dao > Sent: Saturday, January 13, 2007 2:18 PM > To: wpg...@li... > Subject: Re: [Wpg-proxy-development] SSL for Java HTTP proxy library > > John, do you still find problems building from the command line? > 2007/1/13, John Southerland <jo...@we...>: > Juan, > Can you add your build libraries and such to the svn repository? > I am getting errors when I try to build on the command line, and it seems > to > reorg deleted my libraries, it is a little ugly for us command line guys > ;) > Thanks, John > > John Buren Southerland > Principal Consultant > Web Performance Group > 801.467.8090(office) > 214.734.8099(cell) > jo...@we... > > > > > > ________________________________________ > From: wpg...@li... > [mailto:wpg...@li...] On Behalf Of > Juan Gonz=E1lez > Sent: Saturday, January 13, 2007 12:41 PM > To: wpg...@li... > Subject: Re: [Wpg-proxy-development] SSL for Java HTTP proxy library > > Hi there, > well, i'm not an usual IM user, but as everybody I keep an account on MSN > for emergencies ;) > > MSN : op...@ho... > > Cheers > 2007/1/13, John Southerland < jo...@we...>: > Alan, > Your in!that sounds great, I have been killing myself trying to figure ou= t > the SSL stuff and this should teach me quite a bit :) > Please join the developers mailing list so we can track these discussions > a > little better. > I have never used skype, but I will look into it, I do however use instan= t > messenger and have ids on all the major providers, > AIM =3D=3D JohnSoutherland5 > Yahoo =3D jbsouthe > MSN =3D jbs...@ho... > Maybe we can start with that, and see if we need to speak in person.I can > also just go ahead and call you direct if need be. > > Once you and Juan, the other developer joining us, join the mailing list = I > will send out an email detailing what I envisioned and then maybe we can > toss it around and spit out something we all need and see as practicle. > > I originally just used a library called ExProxy written but not > opensourced > by a man in France.He has somewhat disappeared off the planet and is > unreachable.I always thought this should be opensourced rather than just > free so I started this project.The library is based mainly on his.It may > > prove helpful to take a look at his implementation, but we can do anythin= g > we like. > > I was hoping to verify all the HTTP/1.0 functionality as well as SSL > support > via the CONNECT method for version 1.0.0, then start adding HTTP/1.1 TLS > upgrade and misc support for version 1.1.0 or 2.0.0 as we find > appropriate. > > > Well looks like I spelled it out here, so I will just cc Juan and the > mailing list to ensure it is searchable one day ;) > Later, John > > John Buren Southerland > Principal Consultant > Web Performance Group > 801.467.8090(office) > 214.734.8099(cell) > jo...@we... > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > > _______________________________________________ > Wpg-proxy-development mailing list > Wpg...@li... > https://lists.sourceforge.net/lists/listinfo/wpg-proxy-development > > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > _______________________________________________ > Wpg-proxy-development mailing list > Wpg...@li... > https://lists.sourceforge.net/lists/listinfo/wpg-proxy-development > |
From: John S. <jo...@we...> - 2007-01-13 19:26:11
|
Juan, I am getting this error: -javadoc-build: [javadoc] Warning: Leaving out empty argument '-windowtitle' [javadoc] Generating Javadoc [javadoc] Javadoc execution [javadoc] javadoc: error - Illegal package name: "<a" [javadoc] javadoc: error - Illegal package name: "href=3D" [javadoc] javadoc: error - Illegal package name: "http://sourceforge.net/projects/wpg-proxy/" [javadoc] javadoc: error - Illegal package name: ">Java" [javadoc] javadoc: error - Illegal package name: "Page</a><br><a" [javadoc] javadoc: error - Illegal package name: "href=3D" [javadoc] javadoc: error - Illegal package name: = "http://sourceforge.net" [javadoc] javadoc: error - Illegal package name: "><img" [javadoc] javadoc: error - Illegal package name: "src=3D" [javadoc] javadoc: error - Illegal package name: "http://sflogo.sourceforge.net/sflogo.php?group_id=3D185351&type=3D4" [javadoc] javadoc: error - Illegal package name: "width=3D" [javadoc] javadoc: error - Illegal package name: "125" [javadoc] javadoc: error - Illegal package name: "height=3D" [javadoc] javadoc: error - Illegal package name: "37" [javadoc] javadoc: error - Illegal package name: "border=3D" [javadoc] javadoc: error - Illegal package name: "0" [javadoc] javadoc: error - Illegal package name: "alt=3D" [javadoc] javadoc: error - Illegal package name: "SourceForge.net = Logo" [javadoc] javadoc: error - Illegal package name: "/></a>" [javadoc] javadoc: error - Illegal package name: "" [javadoc] Loading source files for package HTTP... [javadoc] javadoc: warning - No source files for package HTTP [javadoc] Loading source files for package Proxy... [javadoc] Loading source files for package Library... [javadoc] javadoc: warning - No source files for package Proxy [javadoc] javadoc: warning - No source files for package Library [javadoc] Loading source files for package Project... [javadoc] javadoc: warning - No source files for package Project [javadoc] Loading source files for package com.wpg.proxy... [javadoc] 20 errors [javadoc] 4 warnings BUILD FAILED /home/jbsouthe/code/wpg-proxy/trunk/wpg-proxy/build.xml:11: Javadoc = returned 1 This may be a version mismatch, I am running ant version 1.7.0 and = javadoc from the sdk version 1.5.0_10-b03 on linux What versions are you running? ________________________________________ From: wpg...@li... [mailto:wpg...@li...] On Behalf = Of Opsi dao Sent: Saturday, January 13, 2007 2:18 PM To: wpg...@li... Subject: Re: [Wpg-proxy-development] SSL for Java HTTP proxy library John, do you still find problems building from the command line?=20 2007/1/13, John Southerland <jo...@we...>:=20 Juan, Can you add your build libraries and such to the svn repository? I am getting errors when I try to build on the command line, and it = seems to reorg deleted my libraries, it is a little ugly for us command line guys = ;) Thanks, John =A0 John Buren Southerland Principal Consultant Web Performance Group 801.467.8090(office)=20 214.734.8099(cell)=20 jo...@we...=20 =A0 =A0 =A0 ________________________________________ From: wpg...@li... [mailto:wpg...@li...] On Behalf = Of Juan Gonz=E1lez Sent: Saturday, January 13, 2007 12:41 PM To: wpg...@li...=20 Subject: Re: [Wpg-proxy-development] SSL for Java HTTP proxy library =A0 Hi there, =A0 well, i'm not an usual IM user, but as everybody I keep an account = on MSN=A0 for emergencies ;) MSN : op...@ho... Cheers 2007/1/13, John Southerland < jo...@we...>: Alan, Your in!=A0=A0that sounds great, I have been killing myself trying to = figure out the SSL stuff and this should teach me quite a bit :) Please join the developers mailing list so we can track these = discussions a=20 little better. I have never used skype, but I will look into it, I do however use = instant messenger and have ids on all the major providers, AIM =3D=3D JohnSoutherland5 Yahoo =3D jbsouthe MSN =3D jbs...@ho... Maybe we can start with that, and see if we need to speak in = person.=A0=A0I can also just go ahead and call you direct if need be. Once you and Juan, the other developer joining us, join the mailing list = I=20 will send out an email detailing what I envisioned and then maybe we can toss it around and spit out something we all need and see as practicle. I originally just used a library called ExProxy written but not = opensourced=20 by a man in France.=A0=A0He has somewhat disappeared off the planet and = is unreachable.=A0=A0I always thought this should be opensourced rather = than just free so I started this project.=A0=A0The library is based mainly on = his.=A0=A0It may prove helpful to take a look at his implementation, but we can do = anything we like. I was hoping to verify all the HTTP/1.0 functionality as well as SSL = support via the CONNECT method for version 1.0.0, then start adding HTTP/1.1 TLS = upgrade and misc support for version 1.1.0 or 2.0.0 as we find = appropriate. Well looks like I spelled it out here, so I will just cc Juan and the mailing list to ensure it is searchable one day ;) Later, John=20 John Buren Southerland Principal Consultant Web Performance Group 801.467.8090(office) 214.734.8099(cell) jo...@we... =A0 -------------------------------------------------------------------------= Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share = your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV _______________________________________________ Wpg-proxy-development mailing list Wpg...@li... https://lists.sourceforge.net/lists/listinfo/wpg-proxy-development=20 |
From: Opsi d. <op...@op...> - 2007-01-13 19:18:16
|
John, do you still find problems building from the command line? 2007/1/13, John Southerland <jo...@we...>: > > Juan, > > Can you add your build libraries and such to the svn repository? > > I am getting errors when I try to build on the command line, and it seems > to reorg deleted my libraries, it is a little ugly for us command line gu= ys > ;) > > Thanks, John > > > > John Buren Southerland > > Principal Consultant > > Web Performance Group <http://www.webperformancegroup.com/> > > 801.467.8090(office) > > 214.734.8099(cell) > > jo...@we... > > > > > > > > ------------------------------ > > *From:* wpg...@li... [mailto: > wpg...@li...] *On Behalf Of *Juan > Gonz=E1lez > *Sent:* Saturday, January 13, 2007 12:41 PM > *To:* wpg...@li... > *Subject:* Re: [Wpg-proxy-development] SSL for Java HTTP proxy library > > > > Hi there, > well, i'm not an usual IM user, but as everybody I keep an account on > MSN for emergencies ;) > > MSN : op...@ho... > > Cheers > > 2007/1/13, John Southerland <jo...@we...>: > > Alan, > Your in! that sounds great, I have been killing myself trying to figure > out > the SSL stuff and this should teach me quite a bit :) > Please join the developers mailing list so we can track these discussions > a > little better. > I have never used skype, but I will look into it, I do however use instan= t > messenger and have ids on all the major providers, > AIM =3D=3D JohnSoutherland5 > Yahoo =3D jbsouthe > MSN =3D jbs...@ho... > Maybe we can start with that, and see if we need to speak in person. I > can > also just go ahead and call you direct if need be. > > Once you and Juan, the other developer joining us, join the mailing list = I > > will send out an email detailing what I envisioned and then maybe we can > toss it around and spit out something we all need and see as practicle. > > I originally just used a library called ExProxy written but not > opensourced > by a man in France. He has somewhat disappeared off the planet and is > unreachable. I always thought this should be opensourced rather than jus= t > free so I started this project. The library is based mainly on his. It > may > prove helpful to take a look at his implementation, but we can do anythin= g > we like. > > I was hoping to verify all the HTTP/1.0 functionality as well as SSL > support > via the CONNECT method for version 1.0.0, then start adding HTTP/1.1 TLS > upgrade and misc support for version 1.1.0 or 2.0.0 as we find > appropriate. > > > Well looks like I spelled it out here, so I will just cc Juan and the > mailing list to ensure it is searchable one day ;) > Later, John > > John Buren Southerland > Principal Consultant > Web Performance Group > 801.467.8090(office) > 214.734.8099(cell) > jo...@we... > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > > _______________________________________________ > Wpg-proxy-development mailing list > Wpg...@li... > https://lists.sourceforge.net/lists/listinfo/wpg-proxy-development > > > |
From: John S. <jo...@we...> - 2007-01-13 19:09:41
|
Juan, Let=92s go ahead and take it down to 1.5, most of the world just started = using 1.5, if we need to add anything 1.6 specific we can consider upgrading, = but the lower revision we can keep it the more helpful it will be to others. I went ahead and cleared all emails from Opsi to allow them to come to = the list, so don=92t worry, if you use that address it will come through = fine. How do you like the basic library so far? Does the plugin interface = seem straightforward enough? My next task will be to document that interface better and provide = examples from within the javadoc. I have pretty good examples of both filter = types. John =20 _____ =20 From: wpg...@li... [mailto:wpg...@li...] On Behalf = Of Juan Gonz=E1lez Sent: Saturday, January 13, 2007 1:53 PM To: wpg...@li... Subject: [Wpg-proxy-development] Which Java version to focus on? =20 I just noticed that actually the source level for the build is 1.6, do I leave it this way or go down to 1.5?=20 It looks reasonable to me, what do you think? |
From: <ju...@ag...> - 2007-01-13 18:52:47
|
I just noticed that actually the source level for the build is 1.6, do I leave it this way or go down to 1.5? It looks reasonable to me, what do you think? |
From: John S. <jo...@we...> - 2007-01-13 18:15:49
|
I think so, also I deleted javadoc from the svn since that is = autogenerated, and also deleted the nbproject/private folder since that is netbeans = user specific, ie hardcoded directories. PS: you may want to add op...@op... to the mailing list so your emails will not get flagged. =20 =20 _____ =20 From: Opsi dao [mailto:op...@op...]=20 Sent: Saturday, January 13, 2007 1:10 PM To: wpg...@li... Subject: Re: [Wpg-proxy-development] SSL for Java HTTP proxy library =20 May those errors be related with junit?=20 About the libs, i'm fixing it right now, my mistake. 2007/1/13, John Southerland <jo...@we... <mailto:jo...@we...> >: Juan, Can you add your build libraries and such to the svn repository? I am getting errors when I try to build on the command line, and it = seems to reorg deleted my libraries, it is a little ugly for us command line guys = ;) Thanks, John =20 John Buren Southerland Principal Consultant <http://www.webperformancegroup.com/> Web Performance Group 801.467.8090(office)=20 214.734.8099(cell)=20 <mailto:jo...@we...> jo...@we...=20 =20 =20 =20 _____ =20 From: wpg...@li... [mailto:wpg...@li...] On Behalf = Of Juan Gonz=E1lez Sent: Saturday, January 13, 2007 12:41 PM To: wpg...@li...=20 Subject: Re: [Wpg-proxy-development] SSL for Java HTTP proxy library =20 Hi there, well, i'm not an usual IM user, but as everybody I keep an account on = MSN for emergencies ;) MSN : op...@ho... Cheers 2007/1/13, John Southerland < jo...@we... <mailto:jo...@we...> >: Alan, Your in! that sounds great, I have been killing myself trying to figure = out the SSL stuff and this should teach me quite a bit :) Please join the developers mailing list so we can track these = discussions a=20 little better. I have never used skype, but I will look into it, I do however use = instant messenger and have ids on all the major providers, AIM =3D=3D JohnSoutherland5 Yahoo =3D jbsouthe MSN =3D jbs...@ho... Maybe we can start with that, and see if we need to speak in person. I = can also just go ahead and call you direct if need be. Once you and Juan, the other developer joining us, join the mailing list = I=20 will send out an email detailing what I envisioned and then maybe we can toss it around and spit out something we all need and see as practicle. I originally just used a library called ExProxy written but not = opensourced=20 by a man in France. He has somewhat disappeared off the planet and is unreachable. I always thought this should be opensourced rather than = just free so I started this project. The library is based mainly on his. It = may prove helpful to take a look at his implementation, but we can do = anything we like. I was hoping to verify all the HTTP/1.0 functionality as well as SSL = support via the CONNECT method for version 1.0.0, then start adding HTTP/1.1 TLS = upgrade and misc support for version 1.1.0 or 2.0.0 as we find = appropriate. Well looks like I spelled it out here, so I will just cc Juan and the mailing list to ensure it is searchable one day ;) Later, John=20 John Buren Southerland Principal Consultant Web Performance Group 801.467.8090(office) 214.734.8099(cell) jo...@we... =20 -------------------------------------------------------------------------= Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share = your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=3Djoin.php <http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV> &p=3Dsourceforge&CID=3DDEVDEV _______________________________________________ Wpg-proxy-development mailing list Wpg...@li... https://lists.sourceforge.net/lists/listinfo/wpg-proxy-development=20 =20 |
From: Opsi d. <op...@op...> - 2007-01-13 18:10:17
|
May those errors be related with junit? About the libs, i'm fixing it right now, my mistake. 2007/1/13, John Southerland <jo...@we...>: > > Juan, > > Can you add your build libraries and such to the svn repository? > > I am getting errors when I try to build on the command line, and it seems > to reorg deleted my libraries, it is a little ugly for us command line gu= ys > ;) > > Thanks, John > > > > John Buren Southerland > > Principal Consultant > > Web Performance Group <http://www.webperformancegroup.com/> > > 801.467.8090(office) > > 214.734.8099(cell) > > jo...@we... > > > > > > > > ------------------------------ > > *From:* wpg...@li... [mailto: > wpg...@li...] *On Behalf Of *Juan > Gonz=E1lez > *Sent:* Saturday, January 13, 2007 12:41 PM > *To:* wpg...@li... > *Subject:* Re: [Wpg-proxy-development] SSL for Java HTTP proxy library > > > > Hi there, > well, i'm not an usual IM user, but as everybody I keep an account on > MSN for emergencies ;) > > MSN : op...@ho... > > Cheers > > 2007/1/13, John Southerland <jo...@we...>: > > Alan, > Your in! that sounds great, I have been killing myself trying to figure > out > the SSL stuff and this should teach me quite a bit :) > Please join the developers mailing list so we can track these discussions > a > little better. > I have never used skype, but I will look into it, I do however use instan= t > messenger and have ids on all the major providers, > AIM =3D=3D JohnSoutherland5 > Yahoo =3D jbsouthe > MSN =3D jbs...@ho... > Maybe we can start with that, and see if we need to speak in person. I > can > also just go ahead and call you direct if need be. > > Once you and Juan, the other developer joining us, join the mailing list = I > > will send out an email detailing what I envisioned and then maybe we can > toss it around and spit out something we all need and see as practicle. > > I originally just used a library called ExProxy written but not > opensourced > by a man in France. He has somewhat disappeared off the planet and is > unreachable. I always thought this should be opensourced rather than jus= t > free so I started this project. The library is based mainly on his. It > may > prove helpful to take a look at his implementation, but we can do anythin= g > we like. > > I was hoping to verify all the HTTP/1.0 functionality as well as SSL > support > via the CONNECT method for version 1.0.0, then start adding HTTP/1.1 TLS > upgrade and misc support for version 1.1.0 or 2.0.0 as we find > appropriate. > > > Well looks like I spelled it out here, so I will just cc Juan and the > mailing list to ensure it is searchable one day ;) > Later, John > > John Buren Southerland > Principal Consultant > Web Performance Group > 801.467.8090(office) > 214.734.8099(cell) > jo...@we... > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDEV > > _______________________________________________ > Wpg-proxy-development mailing list > Wpg...@li... > https://lists.sourceforge.net/lists/listinfo/wpg-proxy-development > > > |
From: John S. <jo...@we...> - 2007-01-13 18:03:27
|
Juan, Can you add your build libraries and such to the svn repository? I am getting errors when I try to build on the command line, and it = seems to reorg deleted my libraries, it is a little ugly for us command line guys = ;) Thanks, John =20 John Buren Southerland Principal Consultant <http://www.webperformancegroup.com/> Web Performance Group 801.467.8090(office) 214.734.8099(cell) <mailto:jo...@we...> jo...@we... =20 =20 =20 _____ =20 From: wpg...@li... [mailto:wpg...@li...] On Behalf = Of Juan Gonz=E1lez Sent: Saturday, January 13, 2007 12:41 PM To: wpg...@li... Subject: Re: [Wpg-proxy-development] SSL for Java HTTP proxy library =20 Hi there, well, i'm not an usual IM user, but as everybody I keep an account on = MSN for emergencies ;) MSN : op...@ho... Cheers 2007/1/13, John Southerland <jo...@we...>: Alan, Your in! that sounds great, I have been killing myself trying to figure = out the SSL stuff and this should teach me quite a bit :) Please join the developers mailing list so we can track these = discussions a=20 little better. I have never used skype, but I will look into it, I do however use = instant messenger and have ids on all the major providers, AIM =3D=3D JohnSoutherland5 Yahoo =3D jbsouthe MSN =3D jbs...@ho... Maybe we can start with that, and see if we need to speak in person. I = can also just go ahead and call you direct if need be. Once you and Juan, the other developer joining us, join the mailing list = I=20 will send out an email detailing what I envisioned and then maybe we can toss it around and spit out something we all need and see as practicle. I originally just used a library called ExProxy written but not = opensourced=20 by a man in France. He has somewhat disappeared off the planet and is unreachable. I always thought this should be opensourced rather than = just free so I started this project. The library is based mainly on his. It = may prove helpful to take a look at his implementation, but we can do = anything we like. I was hoping to verify all the HTTP/1.0 functionality as well as SSL = support via the CONNECT method for version 1.0.0, then start adding HTTP/1.1 TLS = upgrade and misc support for version 1.1.0 or 2.0.0 as we find = appropriate. Well looks like I spelled it out here, so I will just cc Juan and the mailing list to ensure it is searchable one day ;) Later, John=20 John Buren Southerland Principal Consultant Web Performance Group 801.467.8090(office) 214.734.8099(cell) jo...@we... =20 |
From: <ju...@ag...> - 2007-01-13 17:41:05
|
Hi there, well, i'm not an usual IM user, but as everybody I keep an account on MSN for emergencies ;) MSN : op...@ho... Cheers 2007/1/13, John Southerland <jo...@we...>: > > Alan, > Your in! that sounds great, I have been killing myself trying to figure > out > the SSL stuff and this should teach me quite a bit :) > Please join the developers mailing list so we can track these discussions > a > little better. > I have never used skype, but I will look into it, I do however use instant > messenger and have ids on all the major providers, > AIM == JohnSoutherland5 > Yahoo = jbsouthe > MSN = jbs...@ho... > Maybe we can start with that, and see if we need to speak in person. I > can > also just go ahead and call you direct if need be. > > Once you and Juan, the other developer joining us, join the mailing list I > will send out an email detailing what I envisioned and then maybe we can > toss it around and spit out something we all need and see as practicle. > > I originally just used a library called ExProxy written but not > opensourced > by a man in France. He has somewhat disappeared off the planet and is > unreachable. I always thought this should be opensourced rather than just > free so I started this project. The library is based mainly on his. It > may > prove helpful to take a look at his implementation, but we can do anything > we like. > > I was hoping to verify all the HTTP/1.0 functionality as well as SSL > support > via the CONNECT method for version 1.0.0, then start adding HTTP/1.1 TLS > upgrade and misc support for version 1.1.0 or 2.0.0 as we find > appropriate. > > > Well looks like I spelled it out here, so I will just cc Juan and the > mailing list to ensure it is searchable one day ;) > Later, John > > John Buren Southerland > Principal Consultant > Web Performance Group > 801.467.8090(office) > 214.734.8099(cell) > jo...@we... > |
From: John S. <jo...@we...> - 2007-01-13 17:34:35
|
You rock! I thought that was a little messed up ;) John Buren Southerland Principal Consultant <http://www.webperformancegroup.com/> Web Performance Group 801.467.8090(office) 214.734.8099(cell) <mailto:jo...@we...> jo...@we... _____ From: Opsi dao [mailto:op...@op...] Sent: Saturday, January 13, 2007 12:12 PM To: John Southerland Subject: Re: [Task #134981] NetBeans Build Structure Hi back, I just commited the netbeans project up to sf. In this commit I've included the thread separation we told about, and I've also changed the way the initial request was processed because it wasn't able to understand something like GET http://somewhere.com/somedir/file.html HTTP/1.1 , here is the diff for that concrete part: < StringTokenizer st = new StringTokenizer(startLine, " /"); < request.setMethod( st.nextToken() ); < request.setUri( st.nextToken() ); < request.setProtocol( st.nextToken() ); < request.setVersion( st.nextToken() ); > StringTokenizer st = new StringTokenizer(startLine, " "); > request.setMethod( st.nextToken() ); > request.setUri( st.nextToken() ); > > st=new StringTokenizer(st.nextToken(),"/"); > request.setProtocol( st.nextToken() ); > request.setVersion ( st.nextToken() ); Regards |
From: John S. <jo...@we...> - 2007-01-13 17:31:28
|
Alan, Your in! that sounds great, I have been killing myself trying to figure = out the SSL stuff and this should teach me quite a bit :) Please join the developers mailing list so we can track these = discussions a little better. =20 I have never used skype, but I will look into it, I do however use = instant messenger and have ids on all the major providers,=20 AIM =3D=3D JohnSoutherland5 Yahoo =3D jbsouthe MSN =3D jbs...@ho...=20 Maybe we can start with that, and see if we need to speak in person. I = can also just go ahead and call you direct if need be. Once you and Juan, the other developer joining us, join the mailing list = I will send out an email detailing what I envisioned and then maybe we can toss it around and spit out something we all need and see as practicle. I originally just used a library called ExProxy written but not = opensourced by a man in France. He has somewhat disappeared off the planet and is unreachable. I always thought this should be opensourced rather than = just free so I started this project. The library is based mainly on his. It = may prove helpful to take a look at his implementation, but we can do = anything we like. I was hoping to verify all the HTTP/1.0 functionality as well as SSL = support via the CONNECT method for version 1.0.0, then start adding HTTP/1.1 TLS upgrade and misc support for version 1.1.0 or 2.0.0 as we find = appropriate. Well looks like I spelled it out here, so I will just cc Juan and the mailing list to ensure it is searchable one day ;) Later, John John Buren Southerland Principal Consultant Web Performance Group 801.467.8090(office) 214.734.8099(cell) jo...@we... =20 =20 =20 -----Original Message----- From: Alan Moran [mailto:a_j...@ya...]=20 Sent: Saturday, January 13, 2007 7:06 AM To: John Southerland Subject: RE: SSL for Java HTTP proxy library Hi John, my id is a_j_moran so go ahead and add me if you like. I'll take a closer look at what you have done and we can discuss more. >From what I understand you want to do it should be pretty straightforward so I'll try out of a couple of basic ideas and we can talk more then. BTW: I'm very much a vi-and-keep-it-simple sort of guy myself so I guess we shouldn't have any problems there, BTW: do you use skype ? it might be good if we can talk in person on occasion if we need to look at a detail closer.=20 atb, Alan. --- John Southerland <jo...@we...> schrieb: > Alan, >=20 > Yes indeed! Wonderful, please remind me of your > sourceforge id and I will > add you as a developer! >=20 > We are getting ready to reorganize the project a > little, by moving things > around and creating an ant build process, I slapped > it together and used > make, but others prefer ant, and netbeens, where I > just use vi. >=20 > I intend to keep it simple, since I am planning to > continue to use vi, so > the code should not change much, please look at > Proxy.java as that is the > main handler and has my blundering attempts at > initiating ssl after > receiving a CONNECT method request. >=20 > The goal is to toss back a temp key instead of doing > the entire hand off, > and then reading the request and carrying it out for > the user. The aim of > course is to be able to instrument the request in > between. >=20 > I look forward to working with you! >=20 > John >=20 > =20 >=20 > John Buren Southerland >=20 > Principal Consultant >=20 > <http://www.webperformancegroup.com/> Web > Performance Group >=20 > 801.467.8090(office) >=20 > 214.734.8099(cell) >=20 > <mailto:jo...@we...> > jo...@we... >=20 > =20 >=20 > =20 >=20 > =20 >=20 >=20 > _____ =20 >=20 > From: Alan Moran [mailto:a_j...@ya...]=20 > Sent: Friday, January 12, 2007 3:51 AM > To: jbs...@us... > Subject: SSL for Java HTTP proxy library >=20 > =20 >=20 > Hi John, >=20 > =20 >=20 > I gather you are looking for someone to give you > some SSL input for your > project. If you are still looking then perhaps I > can help you here. =20 >=20 > =20 >=20 > Briefly about my background: I am a security > developer (mostly C and Java) > and have experience in GSS/SSL, PKI and PKCS#n etc. > - generally I also do > things like test protocols, trace SSL and that sort > of stuff. >=20 > =20 >=20 > Look forward to hearing from you, >=20 > Alan. >=20 >=20 >=20 > --------------------------------------------------- > You can find my GPG key (a_j...@ya...) at > ETH PGP Keyserver: http://www.tik.ee.ethz.ch/~pgp/ > --------------------------------------------------- >=20 > =20 >=20 > _____ =20 >=20 > Yahoo! Messenger - kostenlos* > <http://de.rd.yahoo.com/evt=3D39058/*http:/de.messenger.yahoo.com> > mit > Familie und Freunden von PC zu PC telefonieren .=20 >=20 >=20 --------------------------------------------------- You can find my GPG key (a_j...@ya...) at ETH PGP Keyserver: http://www.tik.ee.ethz.ch/~pgp/ --------------------------------------------------- =09 =09 ___________________________________________________________=20 Der fr=FChe Vogel f=E4ngt den Wurm. Hier gelangen Sie zum neuen Yahoo! = Mail: http://mail.yahoo.de |
From: John S. <jo...@we...> - 2007-01-12 17:17:50
|
Test message |