Possible alternative Tomcat IIS Connector implementation

2012-03-11 Thread Konstantin Preißer
Hello Tomcat developers, I'm Konstantin Preißer, a german student of Computer Science. I'm developing programs with Java and .Net/C#. Since I have been using Tomcat with IIS (JK ISAPI Connector) for quite some time now, I wondered if it may be an option for the Apache software

RE: Possible alternative Tomcat IIS Connector implementation

2012-03-12 Thread Konstantin Preißer
ble to get chunks from other SPDY streams. Whereas with AJP, IIS would simply stop reading from the AJP connection which doesn't affect other clients.) Wouldn't this be a problem? (But probably I'm just missing somethi

RE: Possible alternative Tomcat IIS Connector implementation

2012-03-12 Thread Konstantin Preißer
;t be a problem with this when implementing server-to-server communication. So maybe I can try to start an IIS SPDY connector. :) Thanks, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: Possible alternative Tomcat IIS Connector implementation

2012-03-12 Thread Konstantin Preißer
s Mladen pointed me to SPDY, so I think I will try that instead. I agree that it might be a good idea to collaborate on such a project. :) Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

IIS SPDY Redirector for Tomcat

2012-05-25 Thread Konstantin Preißer
Hello! Some time ago, I wrote about a possible alternative IIS AJP Connector implementation [1] that is written in C# and uses the new IIS 7/8 module pipeline, which allows to insert managed modules (.Net) in the request pipeline. ---

RE: IIS SPDY Redirector for Tomcat

2012-05-25 Thread Konstantin Preißer
Sorry for the noise, please ignore the previous email (hit "send" too early...) Konstantin Preißer > > Hello! > > Some time ago, I wrote about a possible alternative IIS AJP Connector > implementation [1] that is written in C# and uses the new IIS 7/8 > module pipe

Possible IIS SPDY Redirector for Tomcat

2012-05-25 Thread Konstantin Preißer
The SPDY client also supports flow control (which was added in SPDY/3) so that if a slow client connects to IIS, IIS does not have to buffer the complete request body received by Tomcat before it can send it to the client, while concurrently serving other HTTP requests over that SPDY connecti

RE: Possible IIS SPDY Redirector for Tomcat

2012-05-29 Thread Konstantin Preißer
;paste from ajp impl > ) > > > Costin Yes, I agree. I could modify the SPDY redirector so that it appends x-headers for the client IP etc. (but currently I don't know much about transferring certificates - is that what "CREDENTIAL" frame in SPDY is

RE: Possible IIS SPDY Redirector for Tomcat

2012-06-16 Thread Konstantin Preißer
possible to set up Jetty's SPDY connector to not use TLS/NPN, so that you don't need a SSL certificate and the java NPN tunnel). I would be happy if you have some feedback :) Regards, Konstantin Preißer [1] https://groups.google.com/forum/?fromgroups#!topic/spdy-dev/and5OLY4AsI

RE: Possible IIS SPDY Redirector for Tomcat

2012-08-13 Thread Konstantin Preißer
tomcat - the hard part is the > flow > control. The even harder part is finding time to work on it... I apologize for being so impatient, but do you have an expected date of when SPDY/3 for Tomcat will be available? Thanks! Regards, Konstantin Preißer

RE: [ANN] New committer: Ognjen Blagojevic

2015-10-25 Thread Konstantin Preißer
join me in welcoming him. Welcome! Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: [ANN] New committer: Martin Grigorov

2015-10-26 Thread Konstantin Preißer
join me in welcoming him. Welcome! Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: svn commit: r1696404 - /tomcat/trunk/webapps/examples/WEB-INF/classes/websocket/drawboard/DrawMessage.java

2015-08-19 Thread Konstantin Preißer
ages that has been constructed by pressing down the mouse button, moving the mouse and releasing the mouse button, is complete. However, because every Path/DrawMessage instance contains both the start and end point (instead of only containing one point which would mean the drawing code would need to keep the last Path element until the lastInChain flag is set to true), it is not used. I do not know why I kept the flag when committing the drawboard example, but I think the flag can be removed at Javascript side as well. I will look into it. Thanks, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: Tagging 7.0.46

2013-10-16 Thread Konstantin Preißer
t I would expect Tomcat not to close the WebSocket connection here. Thanks, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: Tagging 7.0.46

2013-10-16 Thread Konstantin Preißer
Mark, > -Original Message- > From: Mark Thomas [mailto:ma...@apache.org] > Sent: Wednesday, October 16, 2013 3:23 PM > To: Tomcat Developers List > Subject: Re: Tagging 7.0.46 > > On 16/10/2013 14:09, Konstantin Preißer wrote: > > Hi Mark, > > > >

RE: [VOTE] Release Apache Tomcat 7.0.46

2013-10-16 Thread Konstantin Preißer
binding) Tested with some self-made applications. Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: [VOTE] Release Apache Tomcat 7.0.46

2013-10-16 Thread Konstantin Preißer
with BIO, NIO and APR connectors. I have done some digging and I found that with r1516410, the old Websocket implementation works fine with NIO and APR, but with r1516411, it does not work anymore. Regards, Konstantin Preißer

RE: [VOTE] Release Apache Tomcat 8.0.0-RC5

2013-10-16 Thread Konstantin Preißer
elease is: > [ ] Broken - do not release > [X] Alpha - go ahead and release as 8.0.0-RC5 alpha (non-binding) Looks good to me. Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

Tomcat closes Websocket connection when using a SSL HTTP APR connector (was: RE: Tagging 7.0.46)

2013-10-16 Thread Konstantin Preißer
> -Original Message- > From: Konstantin Preißer [mailto:kpreis...@apache.org] > Sent: Wednesday, October 16, 2013 3:33 PM > I also need to do more testing because the error is not very reproducible on > my current machine (but I have another one where it was more > rep

RE: Tomcat closes Websocket connection when using a SSL HTTP APR connector (was: RE: Tagging 7.0.46)

2013-10-16 Thread Konstantin Preißer
> -Original Message- > From: Konstantin Preißer [mailto:kpreis...@apache.org] > Sent: Thursday, October 17, 2013 1:23 AM > To: 'Tomcat Developers List' > Subject: Tomcat closes Websocket connection when using a SSL HTTP APR > connector (was: RE: Tagging 7.0.46)

RE: svn commit: r1533035 - /tomcat/tc7.0.x/trunk/webapps/examples/WEB-INF/classes/websocket/drawboard/Room.java

2013-10-17 Thread Konstantin Preißer
e some insight of why Grahpics2D.dispose() may cause a hang on shutdown? I have never seen .dispose() causing a hang, at least not on Windows. If it hangs, might this be a result of different threads using the Grahpics object? Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: svn commit: r1533035 - /tomcat/tc7.0.x/trunk/webapps/examples/WEB-INF/classes/websocket/drawboard/Room.java

2013-10-17 Thread Konstantin Preißer
om.java > > On 17/10/2013 11:53, Mark Thomas wrote: > > On 17/10/2013 11:50, Konstantin Preißer wrote: > >> Hi Mark, > >> > >>> -Original Message- > >>> From: Mark Thomas [mailto:ma...@apache.org] > >>> Sent: Thursday, O

RE: svn commit: r1533035 - /tomcat/tc7.0.x/trunk/webapps/examples/WEB-INF/classes/websocket/drawboard/Room.java

2013-10-17 Thread Konstantin Preißer
> -Original Message- > From: Konstantin Preißer [mailto:kpreis...@apache.org] > Sent: Thursday, October 17, 2013 1:18 PM > To: 'Tomcat Developers List' > Subject: RE: svn commit: r1533035 - > /tomcat/tc7.0.x/trunk/webapps/examples/WEB- > INF/classes/websoc

RE: svn commit: r1533035 - /tomcat/tc7.0.x/trunk/webapps/examples/WEB-INF/classes/websocket/drawboard/Room.java

2013-10-17 Thread Konstantin Preißer
om.java > > > OK. I think I'm done. > > Mark Thanks a lot. (I probably should have though of using lazy initializing also when creating the room implementation, so e.g. the memory for the BufferedImage is not created until the Drawboard is actua

RE: Possible IIS SPDY Redirector for Tomcat

2013-10-18 Thread Konstantin Preißer
y 8.1 seem to support Websockets while it is only Servlet 3.0, whereas Jetty 9.1 should support Servlet 3.1 but I was not yet able to create a non-SSL SPDY/3 connector with it). If you would like to test the SPDY redirector with a downloadable version of IIS 8 (that runs also on client Windows edi

RE: Tomcat closes Websocket connection when using a SSL HTTP APR connector (was: RE: Tagging 7.0.46)

2013-10-22 Thread Konstantin Preißer
t side of this > > but I'm fairly sure it is going to need someone more familiar with C to > > provide some pointers. > > Having tested various theories as to why this was happened I tried > tested the theory "is isn't an error, carry on" and that appears to > have worked. Treating the error in the same manner as EAGAIN does not > drop the client connection and that connection continues to work. > > I have added some debug logging we can enable if we suspect this is > causing problems in the future. > > Mark Thanks a lot for fixing the problems. I can confirm that with r1534619, I can no longer reproduce the connection close issue. Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

Website: "Content-Type" header includes "charset=UTF-8" for some static file types

2013-10-28 Thread Konstantin Preißer
encoding, so that header added by XSTL processor matches with HTTP Content-Type header added by tomcat.apache.org site." Does anybody know the reasoning behind adding a "charset=UTF-8" field in the Content-Type for every *.html page? Should a issue be raised for this at Apache Infra?

RE: I'm back

2013-11-07 Thread Konstantin Preißer
ed again, so go easy on me while I learn the new tools > of the trade ;) > > Filip Wecome back! Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: svn commit: r1540077 - in /tomcat/trunk/webapps/examples/jsp/jsp2/jspx: svgexample.html textRotate.html textRotate.jspx

2013-11-09 Thread Konstantin Preißer
> > > > > > + > > This *.html file is served with Content-Type of text/html. > > To really serve it with "text/html; charset=UTF-8" the recommended way > is to configure a > AddDefaultCharsetFilter > http://tomcat.apache.org/tomcat-8

RE: [VOTE] Release Apache Tomcat 8.0.0-RC6

2013-12-09 Thread Konstantin Preißer
rt with a capital letter (but not the URL which requests the static file). Any idea what is going on there? Why would Tomcat create such a big byte array for a static file? Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: [VOTE] Release Apache Tomcat 8.0.0-RC6

2013-12-10 Thread Konstantin Preißer
can confirm that with r1549832, downloading the large static file works as expected. Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: [VOTE] Release Apache Tomcat 8.0.0-RC7

2013-12-14 Thread Konstantin Preißer
Hi Mark, > -Original Message- > From: Mark Thomas [mailto:ma...@apache.org] > Sent: Thursday, December 12, 2013 12:28 AM > > The proposed 8.0.0-RC7 release is: > > [ ] Broken - do not release > > [ ] Alpha - go ahead and release as 8.0.0-RC7 alpha While the issue with large static file

RE: [VOTE] Release Apache Tomcat 8.0.0-RC7

2013-12-14 Thread Konstantin Preißer
> -Original Message- > From: Konstantin Preißer [mailto:kpreis...@apache.org] > Sent: Saturday, December 14, 2013 1:53 PM > To: 'Tomcat Developers List' > Subject: RE: [VOTE] Release Apache Tomcat 8.0.0-RC7 > > Hi Mark, > > > -Original Messa

RE: [VOTE] Release Apache Tomcat 8.0.0-RC7

2013-12-16 Thread Konstantin Preißer
Hi Mark, > -Original Message- > From: Mark Thomas [mailto:ma...@apache.org] > Sent: Monday, December 16, 2013 3:44 PM > To: Tomcat Developers List > Subject: Re: [VOTE] Release Apache Tomcat 8.0.0-RC7 > > On 16/12/2013 14:07, Mark Thomas wrote: > > On 14/12/201

RE: svn commit: r1559157 - in /tomcat/tc6.0.x/trunk: ./ STATUS.txt java/org/apache/tomcat/util/descriptor/DigesterFactory.java webapps/docs/changelog.xml

2014-01-17 Thread Konstantin Preißer
105,12 @@ > > by default when a security manager is used. The block is > > implemented > via > > a custom resolver to enable the logging of any blocked entities. > (markt) > > > > + > > +56016: Whe

RE: Special requirements on session id generator

2014-02-14 Thread Konstantin Preißer
hout "putting it back" (I don't know the correct English term for this), as you would have to reduce the number of possible Session-ID values that will be generated by the RNG, so that instead of 256^16, you can only get 256^16-2000 different session-IDs where the already generated IDs

RE: Special requirements on session id generator

2014-02-14 Thread Konstantin Preißer
uest, to see if the session-ID is currently in use. More important would be that the number of bytes that is used for generating a Session-ID is so high that a client has a vanishing chance of hitting a valid session-ID, regardless of whether the value that he uses is one that the se

RE: Special requirements on session id generator

2014-02-14 Thread Konstantin Preißer
Hi Rainer, > -Original Message- > From: Rainer Jung [mailto:rainer.j...@kippdata.de] > Sent: Friday, February 14, 2014 11:07 PM > To: Tomcat Developers List > Subject: Re: Special requirements on session id generator > > On 14.02.2014 19:14, Konstantin Preißer wrot

RE: svn commit: r1567742 - /tomcat/tc7.0.x/trunk/bin/service.bat

2014-02-15 Thread Konstantin Preißer
cessfully", so I did not notice the problem. I think currently the only way to correctly install Tomcat as a service when using service.bat is to run cmd.exe as administrator. If it is possible to provide the values as arguments instead of environment variables, then I think it should

RE: svn commit: r1637684 - /tomcat/trunk/webapps/docs/ssl-howto.xml

2014-11-10 Thread Konstantin Preißer
character makes no sense on Windows ('^' is used there). > >>> I think that readers should be wise enough to unwrap the lines, and > unwrapping is easier when you do not have to delete stray '\' characters. > >> > >> It would probably be better to

RE: svn propchange: r1588102 - svn:log

2014-04-23 Thread Konstantin Preißer
class-wide variables (which would be like using "static readonly") and local variables, so the compiler will replace those variable references with the constant values (and "const" variables will not take space on the stack or in an object). Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: svn commit: r1590120 - in /tomcat/trunk: java/javax/el/Util.java java/org/apache/el/util/ReflectionUtil.java test/javax/el/TestUtil.java webapps/docs/changelog.xml

2014-04-25 Thread Konstantin Preißer
)); } } return cmp; } (but according to Java API documentation, Integer.compare(int, int) is only available since Java 1.7) Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: svn commit: r1590120 - in /tomcat/trunk: java/javax/el/Util.java java/org/apache/el/util/ReflectionUtil.java test/javax/el/TestUtil.java webapps/docs/changelog.xml

2014-04-25 Thread Konstantin Preißer
Hi Mark, > -Original Message- > From: Mark Thomas [mailto:ma...@apache.org] > Sent: Friday, April 25, 2014 10:43 PM > OK for Tomcat 8 then but not Tomcat 7. > > You have commit privs. It is all yours. OK, done. Regards,

RE: Time for tcnative-1.1.31?

2014-06-10 Thread Konstantin Preißer
ion: http://www.microsoft.com/de-de/download/details.aspx?id=40787 Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: svn commit: r1602381 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/coyote/http11/AbstractHttp11Processor.java test/org/apache/catalina/startup/SimpleHttpClient.java test/org/apache/coyote/http11/

2014-06-13 Thread Konstantin Preißer
have been released that clarify HTTP/1.1: RFC7230 - HTTP/1.1: Message Syntax and Routing RFC7231 - HTTP/1.1: Semantics and Content RFC7232 - HTTP/1.1: Conditional Requests RFC7233 - HTTP/1.1: Range Requests RFC7234 - HTTP/1.1: Caching RFC7235 - HTTP/1.1: Authentication Regards, Konstantin Preißer

RE: Building tcnative on win32

2014-06-13 Thread Konstantin Preißer
sed on .Net so you should be able to do anything that you could do in C#/.Net. For example, to download a file you should be able to use System.Web.WebClient like it is described at [2]. For extracting a ZIP file, you could use System.IO.Compression.ZipFile.ExtractToDirectory() a

RE: Building tcnative on win32

2014-06-18 Thread Konstantin Preißer
} ]]] To run the script if it is saved as "MyScript1.ps" in the current directory, you can use the following command (setting ExecutionPolicy is required to allow to run scripts in the current session): Powershell.exe -ExecutionPolicy RemoteSigned .\MyScript.ps1 Hope this helps. Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: Building tcnative on win32 [progress!]

2014-06-18 Thread Konstantin Preißer
t;%ProgramFiles%\WinRAR\winrar.exe" x openssl-1.0.1h.tar.gz However, when opening an elevated Winrar.exe (GUI Version) and extract the .tar.gz file there, WinRAR successfully creates the symlinks though. Maybe there is some bug in Winrar so it cannot crea

RE: Building tcnative on win32 [progress!]

2014-06-18 Thread Konstantin Preißer
> -Original Message- > From: Konstantin Preißer [mailto:kpreis...@apache.org] > Sent: Wednesday, June 18, 2014 11:42 PM > Although Winrar.exe isn't a command-line tool, you can start it from > command-line to extract a file. Unfortunately, when I try to run this > c

RE: Building tcnative on win32 [progress!]

2014-06-18 Thread Konstantin Preißer
Hi Christopher, > -Original Message- > From: Christopher Schultz [mailto:ch...@christopherschultz.net] > Sent: Thursday, June 19, 2014 1:31 AM > To: Tomcat Developers List > Subject: Re: Building tcnative on win32 [progress!] > > Konstantin, > > On 6/18/14,

RE: Building tcnative on win32 [alpha]

2014-06-19 Thread Konstantin Preißer
it with some EXE inspection tools, I can see that it has a dependency to msvcrt.dll, which seems like an older version of VC++ (maybe VC++ 6.0 which is a really old version - but I'm not sure). I don't know much about building native (C/C++) apps; however if I create a C+

RE: Building tcnative on win32 [alpha]

2014-06-19 Thread Konstantin Preißer
Hi Christopher, thank you for your reply. > -Original Message- > From: Christopher Schultz [mailto:ch...@christopherschultz.net] > Sent: Thursday, June 19, 2014 6:57 PM > > Konstantin, > > On 6/19/14, 12:20 PM, Konstantin Preißer wrote: > > good work for

RE: Working tc native build

2014-07-11 Thread Konstantin Preißer
Hi Christopher, > -Original Message- > From: Christopher Schultz [mailto:ch...@christopherschultz.net] > Sent: Friday, July 11, 2014 7:50 PM > To: Tomcat Developers List > Subject: Re: Working tc native build > > For end users the dependency on the dll is not a big problem, because > > Mi

RE: Working tc native build

2014-07-11 Thread Konstantin Preißer
Hi, > -Original Message- > From: Konstantin Preißer [mailto:kpreis...@apache.org] > Sent: Friday, July 11, 2014 8:18 PM > To: 'Tomcat Developers List' > Subject: RE: Working tc native build > > Hi Christopher, > > > -Original Message-

RE: SPDY/3

2013-05-05 Thread Konstantin Preißer
m not sure if anyone has tried out or uses the SPDY support - or if there is > still interest in supporting it ( or doubts about keeping it ) - please let me > know. > > Costin Do you have any information about the current state of SPDY/3 implementation

RE: svn commit: r1521594 [1/16] - in /tomcat/site/trunk: docs/ docs/images/ docs/stylesheets/ xdocs/images/ xdocs/stylesheets/

2013-09-11 Thread Konstantin Preißer
ng HTML markup for presentational purposes; etc. So from the markup side, it should reflect the current HTML 5.1 (W3) spec from 2013. :) Regards, Konstantin Preißer [1] http://www.w3.org/TR/html51/ - To unsubscribe, e-mail:

RE: svn commit: r1521594 [1/16] - in /tomcat/site/trunk: docs/ docs/images/ docs/stylesheets/ xdocs/images/ xdocs/stylesheets/

2013-09-11 Thread Konstantin Preißer
e it as the HTML 5 spec says, to mark the "main" content of a page, just leave it and mark everything else with "header" and "footer"; so I think, semantically, the tag would not be needed. Regards, Konsta

RE: svn commit: r1521838 [1/5] - in /tomcat/site/trunk: docs/ docs/stylesheets/ xdocs/stylesheets/

2013-09-11 Thread Konstantin Preißer
es: Index: xdocs/stylesheets/tomcat-site.xsl === --- xdocs/stylesheets/tomcat-site.xsl (revision 1521852) +++ xdocs/stylesheets/tomcat-site.xsl (working copy) @@ -27,7 +27,7 @@ Regards, Konstantin Preißer ---

RE: Download links broken on main web site?

2013-09-11 Thread Konstantin Preißer
of the Apache Software Foundation. - - That should restore the download pages, but will revert the IE8 fixes. Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: Download links broken on main web site?

2013-09-11 Thread Konstantin Preißer
using the conditional comments). Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: Download links broken on main web site?

2013-09-11 Thread Konstantin Preißer
; - > > - > > > > - > > > > > > > > @@ -149,17 +140,12 @@ > > > > > > > > - > > - > > > > - > > Copyright © 1999-2013, The Apache Softw

RE: svn commit: r1521594 [1/16] - in /tomcat/site/trunk: docs/ docs/images/ docs/stylesheets/ xdocs/images/ xdocs/stylesheets/

2013-09-11 Thread Konstantin Preißer
On the other hand, there are through , > so if you want a , why not use instead? is used for marking a header on a section, but markes a part of the page as not being main content (e.g. the Tomcat logo and Apache feather which stays the same on every .HTML page). Regards,

RE: svn commit: r1525975 - in /tomcat/site/trunk: docs/whoweare.html xdocs/whoweare.xml

2013-09-24 Thread Konstantin Preißer
Hi Mark, > -Original Message- > From: Mark Thomas [mailto:ma...@apache.org] > Sent: Tuesday, September 24, 2013 10:02 PM > I guess everything works then :) Yes, E-Mail and SVN seem to be working. :) > A very warm welcome. Thanks! Konstantin -

International characters in source files and SVN commit messages (was: RE:r1525975)

2013-09-25 Thread Konstantin Preißer
ssuming all files which contain bytes > 0x7F are encoded as UTF-8)? (Or, that it tries to decode it as UTF-8, and if it fails, decode it as ISO-8859-1 ?) For example, when I use TortoiseSVN to view the unified diff of r152597, then it prints the &q

RE: International characters in source files and SVN commit messages (was: RE:r1525975)

2013-09-25 Thread Konstantin Preißer
Hi Mark, thanks for the reply. > -Original Message- > From: Mark Thomas [mailto:ma...@apache.org] > Sent: Wednesday, September 25, 2013 5:01 PM > > One way I can > > think would be to XML-encode such characters ("ß" as "ß"). > > However, personally I would rather not do this, but write s

RE: International characters in source files and SVN commit messages (was: RE:r1525975)

2013-09-25 Thread Konstantin Preißer
> If you are okay with this, then I don't mind changing the encoding for the SVN > Commit E-Mails. Sorry; I meant "then I don't care about changing it". Konstantin - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For

RE: International characters in source files and SVN commit messages (was: RE:r1525975)

2013-09-25 Thread Konstantin Preißer
Mark, > -Original Message- > From: Mark Thomas [mailto:ma...@apache.org] > Sent: Wednesday, September 25, 2013 5:54 PM > I'd say yes. Property files are a 'special' case: > http://stackoverflow.com/questions/4659929/how-to-use-utf-8-in- > resource-properties-with-resourcebundle OK, thank

RE: Broken links

2013-09-26 Thread Konstantin Preißer
get rid of those static HTML pages that duplicate the source code of other files (with adding syntax highlighting using legacy elements etc.), and use a programmatic solution to generate source code with syntax highlighting instead. Regards, Konstantin Preißer --

RE: [VOTE] Release Apache Tomcat 7.0.45

2013-09-26 Thread Konstantin Preißer
for Windows-x64 with default configuration (APR connector) and browsing the local Tomcat docs with Firefox, approximately after a minute of browsing. Regards, Konstantin Preißer Crash log: # # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION

RE: [VOTE] Release Apache Tomcat 7.0.45

2013-09-26 Thread Konstantin Preißer
trunk with r1523674, then every works fine. However, when I try trunk with r1523781, then I get these crashes again. I used the TC Native 1.1.28 (Windows x64) every time. Regards, Konstantin Preißer - To unsubscribe,

RE: [VOTE] Release Apache Tomcat 7.0.45

2013-09-26 Thread Konstantin Preißer
052 (or later). I just tried with current trunk (r1526565) and with Native 1.1.28, and I still get the same crash in tcnative-1.dll. Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For a

RE: [VOTE] Release Apache Tomcat 7.0.45

2013-09-26 Thread Konstantin Preißer
mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, erms, tsc, tscinvbit, tscinv Memory: 4k page, physical 1834484k(894392k free), swap 3669492k(2768612k free) vm_info: Java HotSpot(TM) 64-Bit Server VM (24.0-b56) for windows-amd64 JRE (1.7.0_40-b43), built on Aug 26 20

RE: International characters in source files and SVN commit messages (was: RE:r1525975)

2013-09-26 Thread Konstantin Preißer
hen it displays that one. This seems also be used e.g. by Notepad++. I think such a logic could also be used by the commit mailer to decide if the text is UTF-8 or ISO-8859-1 for better readability, but I have no strong preference for it. Kind regards, Konstantin Preißer [1] http://www.opentag.com/

RE: svn commit: r1526921 - in /tomcat/site/trunk: docs/ docs/stylesheets/ xdocs/stylesheets/

2013-09-27 Thread Konstantin Preißer
Hi Chris, > -Original Message- > From: Christopher Schultz [mailto:ch...@christopherschultz.net] > Sent: Friday, September 27, 2013 4:58 PM > To: Tomcat Developers List > Subject: Re: svn commit: r1526921 - in /tomcat/site/trunk: docs/ > docs/stylesheets/ xdocs/stylesheets/ > > Konstantin

RE: Possible IIS SPDY Redirector for Tomcat

2013-09-28 Thread Konstantin Preißer
5: SYN_REPLY received (FLAG_FIN: False). 2013-09-28 16:45:54.038Z: [DEBUG] [SpdyConnector] R: Stream 5: Data Frame received (Length: 1150; FLAG_FIN: True). 2013-09-28 16:45:54.038Z: [DEBUG] [IIS Module] Status Code: 200 2013-09-28 16:45:54.038Z: [DEBUG] [IIS Module] Starting the response.

RE: Possible IIS SPDY Redirector for Tomcat

2013-09-30 Thread Konstantin Preißer
Hi Chris, > -Original Message- > From: Christopher Schultz [mailto:ch...@christopherschultz.net] > Sent: Monday, September 30, 2013 5:19 PM > To: Tomcat Developers List > Subject: Re: Possible IIS SPDY Redirector for Tomcat > > Konstantin, > > On 9/28/13

RE: [VOTE] Release Apache Tomcat 7.0.45

2013-09-30 Thread Konstantin Preißer
> -Original Message- > From: Mark Thomas [mailto:ma...@apache.org] > Sent: Monday, September 30, 2013 9:31 PM > To: Tomcat Developers List > Subject: Re: [VOTE] Release Apache Tomcat 7.0.45 > > On 30/09/2013 09:00, Mark Thomas wrote: > > On 26/09/2013 19:4

RE: Broken links

2013-10-01 Thread Konstantin Preißer
On 26.9.2013 15:00, Konstantin Preißer wrote: > When looking at 3) and browsing in SVN history, it seems there never was such > a HTML > page that contains the source for servletToJsp.java. However, as I'm working > on improving > the HTML markup, I'm looking if we ca

RE: 8.0.x / 7.0.x progress

2013-10-01 Thread Konstantin Preißer
the APR connector does not handle the >connection abort correctly. The behavior with 8.0.0-RC1 seems to be the same. Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: 8.0.x / 7.0.x progress

2013-10-02 Thread Konstantin Preißer
t. at org.apache.coyote.http11.upgrade.AprServletInputStream.doRead(AprServletInputStream.java:102) [...] Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: svn commit: r1528631 - /tomcat/trunk/webapps/docs/tomcat-docs.xsl

2013-10-02 Thread Konstantin Preißer
not work in such browsers? I do not have such detailed knowledge of XML - how is this entity supposed to work? E.g. when I open a file like monitoring.xml in Tomcat docs then the XML tree shown by the browser does not contain a element. Regards, Konstantin Preißer

RE: 8.0.x / 7.0.x progress

2013-10-03 Thread Konstantin Preißer
gt; > 70014 is the APR error code for EOF so we need to report that as EOF > rather than as a generic IOException. That should be easy to do. > > Mark OK, with r1528758 it reports now an EOFException instead of IOException for APR and NIO when I close Chrome, which

RE: svn commit: r1528631 - /tomcat/trunk/webapps/docs/tomcat-docs.xsl

2013-10-03 Thread Konstantin Preißer
ity concerns. > > Best regards, > Konstantin Kolinko > > --------- > To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org > For additional commands, e-mail: dev-h...@tomcat.apache.org Regards, Konstantin Preißer

RE: 8.0.x / 7.0.x progress

2013-10-04 Thread Konstantin Preißer
e. This method returns before the message is transmitted.", I would have expected that e.g. another Thread is used to write in blocking mode, so that the sendText() method can return immediately. Thanks! Regards, Konstantin Preißer [1] http://tech

RE: 8.0.x / 7.0.x progress

2013-10-04 Thread Konstantin Preißer
Hi Mark, > -Original Message- > From: Mark Thomas [mailto:ma...@apache.org] > Sent: Friday, October 4, 2013 11:58 PM > To: Tomcat Developers List > Subject: Re: 8.0.x / 7.0.x progress > > On 04/10/2013 22:49, Konstantin Preißer wrote: > > Hi Mark, > &g

RE: 8.0.x / 7.0.x progress

2013-10-05 Thread Konstantin Preißer
e a non-blocking write operation and only acquire a thread for calling the SendHandler#onResult() callback (but I don't have much knowledge of the internal Tomcat code so I could be wrong here); whereas for BIO, Tomcat could acquire a thread for the complete duration of the blocking wr

RE: 8.0.x / 7.0.x progress

2013-10-05 Thread Konstantin Preißer
ing, and then uses such an application in production (where the problems might not show up immediately when doing some tests). If getAsyncRemote() instead threw an exception saying that you need NIO or APR for this method, I think this might save someone such a surprise (but I must admit that I do

RE: 8.0.x / 7.0.x progress

2013-10-05 Thread Konstantin Preißer
Hi Mark, > -Original Message- > From: Mark Thomas [mailto:ma...@apache.org] > Sent: Saturday, October 5, 2013 9:46 PM > To: Tomcat Developers List > Subject: Re: 8.0.x / 7.0.x progress > > On 05/10/2013 20:42, Konstantin Preißer wrote: > > > One question

RE: 8.0.x / 7.0.x progress

2013-10-07 Thread Konstantin Preißer
Hi Mark, > -Original Message- > From: Mark Thomas [mailto:ma...@apache.org] > Sent: Sunday, October 6, 2013 5:42 PM > To: Tomcat Developers List > Subject: Re: 8.0.x / 7.0.x progress > > On 06/10/2013 02:57, Konstantin Preißer wrote: > > > These err

RE: 8.0.x / 7.0.x progress

2013-10-07 Thread Konstantin Preißer
lue = -1), there is no limit when processing whole messages, so I think Tomcat should handle such large messages when not using methods to read partial messages. Am I missing something? Thank you! Regards, Konstantin Preißer [1] http://docs.oracle.com/javaee/7/api/javax/websocket/OnMess

RE: 8.0.x / 7.0.x progress

2013-10-07 Thread Konstantin Preißer
e to receive 10 MB messages, but it still does not receive the 1 characters string message. Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: 8.0.x / 7.0.x progress

2013-10-07 Thread Konstantin Preißer
nd much bigger messages to make sure the buffer of the remote endpoint runs out of space if it is not reading from the connection. I can try that if I have some time left. Regards, Konstantin Preißer - To unsubscribe, e

RE: 8.0.x / 7.0.x progress

2013-10-07 Thread Konstantin Preißer
> -Original Message- > From: Konstantin Preißer [mailto:kpreis...@apache.org] > Sent: Monday, October 7, 2013 4:10 PM > To: 'Tomcat Developers List' > Subject: RE: 8.0.x / 7.0.x progress > > Hi Mark, > > > -Original Message- > &

RE: 8.0.x / 7.0.x progress

2013-10-07 Thread Konstantin Preißer
rg.apache.tomcat.websocket.WsFrameBase OK, thank you for the explanation (and sorry for spamming this thread). :) Regards, Konstantin Preißer - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org

RE: svn commit: r1530057 - /tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java

2013-10-07 Thread Konstantin Preißer
1) Follow steps 1-4 from bugzilla 55633 2) Instead of resuming the firefox.exe, kill the process. 3) On IE/other browser, the snakes will stand still for ~ 15 seconds, then continue to move - but the snake from the killed firefox is still visible. Regards, Konstantin Preißer -

RE: svn commit: r1530081 - /tomcat/trunk/java/org/apache/tomcat/util/net/AprEndpoint.java

2013-10-08 Thread Konstantin Preißer
close the connection one second after resuming the browser (which normally shouldn't happen). The snake will disappear in the other browser and Firefox prints "WebSocket cosed". Any idea about this? Thanks, Konstantin Preißer

RE: svn commit: r1530081 - /tomcat/trunk/java/org/apache/tomcat/util/net/AprEndpoint.java

2013-10-08 Thread Konstantin Preißer
still opened. When I resume the data transfer then the browser receives the connection shutdown and aborts the connection. If you (or anybody else) have interest I can share the sources (and binaries) of the program to help debugging the problems. Regards, Konstantin Preißer --

RE: svn commit: r1530081 - /tomcat/trunk/java/org/apache/tomcat/util/net/AprEndpoint.java

2013-10-08 Thread Konstantin Preißer
connection (when pausing the Firefox -> Tomcat connection prior to unpausing Tomcat -> Firefox direction, Tomcat continues to send data). When trying with APR, I keep seeing that Tomcat initates the connection shutdown. With BIO, the problems don't occur. Hope this helps, Reg

RE: svn commit: r1530081 - /tomcat/trunk/java/org/apache/tomcat/util/net/AprEndpoint.java

2013-10-09 Thread Konstantin Preißer
/2013 12:26, Mark Thomas wrote: > > On 09/10/2013 02:41, Konstantin Preißer wrote: > > > >> When trying with APR, I keep seeing that Tomcat initates the > >> connection shutdown. > > > > I do still see the error when using APR with the current code. I

RE: svn commit: r1530081 - /tomcat/trunk/java/org/apache/tomcat/util/net/AprEndpoint.java

2013-10-09 Thread Konstantin Preißer
va:2451) at org.apache.tomcat.util.net.AprEndpoint$SocketProcessor.run(AprEndpoint.java:2437) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lan

  1   2   >