Re: IE 8 and before refusing to download files (I hate IE)

2013-06-03 Thread Michael-O
Am 2013-06-04 00:40, schrieb Jeffrey Janner: [..] For those who might be interested, here are the two header sets returned: Without SSLAuthenticator: HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Pragma: No-cache Cache-Control: no-cache Expires: Wed, 31 Dec 1969 18:00:00 CST Content-Disposition: att

RE: IE 8 and before refusing to download files (I hate IE)

2013-06-03 Thread Jeffrey Janner
> -Original Message- > From: Jeffrey Janner [mailto:jeffrey.jan...@polydyne.com] > Sent: Monday, June 03, 2013 3:39 PM > To: 'Tomcat Users List'; 'verlag.preis...@t-online.de' > Subject: RE: IE 8 and before refusing to download files (I hate IE) > > > -Original Message- > > From: v

RE: IE 8 and before refusing to download files (I hate IE)

2013-06-03 Thread Jeffrey Janner
> -Original Message- > From: verlag.preis...@t-online.de [mailto:verlag.preis...@t-online.de] > Sent: Monday, June 03, 2013 1:28 PM > To: Tomcat Users List > Subject: Re: IE 8 and before refusing to download files (I hate IE) > > Hi, > > -Original-Nachricht- > > Von: Jeffrey Janne

RE: Tomcat 6 and Windows Service

2013-06-03 Thread Jeffrey Janner
> -Original Message- > From: Caldarale, Charles R [mailto:chuck.caldar...@unisys.com] > Sent: Monday, June 03, 2013 12:50 PM > To: Tomcat Users List > Subject: RE: Tomcat 6 and Windows Service > > > From: Jeffrey Janner [mailto:jeffrey.jan...@polydyne.com] > > Subject: RE: Tomcat 6 and Win

Re: WebSockets Thread Safety question

2013-06-03 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Chris, On 6/3/13 6:42 AM, chris derham wrote: >> When I use the syntax from the samples in the onTextMessage() >> method, I get ConcurrentModificationException if I have more than >> one client sending data to the server at the same time: >> >> for

RE: Tomcat7 and SPNEGO configuration questions

2013-06-03 Thread Edward Siewick
Felix & Friends, I've made a fair amount of progress, though I'm still not able to log in with a domain credential. The domain account ID doesn't appear in the Tomcat7 logging at all, though it is in tomcat-users.xml. So I might now only be confused as to the syntax of: server.xml for JAAS; the

Re: IE 8 and before refusing to download files (I hate IE)

2013-06-03 Thread verlag.preis...@t-online.de
Hi, -Original-Nachricht- > Von: Jeffrey Janner > An: 'Tomcat Users List' > Ran into an interesting problem today. It seems that IE8 and before > no longer likes how we are sending BLOB files. > > Worked last week as far as we can tell. Works fine for IE9+ and other > browsers, but IE

IE 8 and before refusing to download files (I hate IE)

2013-06-03 Thread Jeffrey Janner
Ran into an interesting problem today. It seems that IE8 and before no longer likes how we are sending BLOB files. Worked last week as far as we can tell. Works fine for IE9+ and other browsers, but IE8 is suddenly giving us an error message, as though it is ignoring the response headers. I'm

RE: Tomcat 6 and Windows Service

2013-06-03 Thread Caldarale, Charles R
> From: Jeffrey Janner [mailto:jeffrey.jan...@polydyne.com] > Subject: RE: Tomcat 6 and Windows Service > You are missing one line from your configuration. At the top you need: > -Dcom.sun.management.jmxremote That hasn't been needed for many years (if ever). Setting any of the com.sun.manag

RE: .net web service client calling Tomcat 7

2013-06-03 Thread Bean William R
>When client sends a request there are written 2 lines at tomcat access log: >192.168.1.211 - - [03/Jun/2013:16:02:24 +0200] "POST >/ades-server/adesOperationsWebService HTTP/1.1" 401 951 >192.168.1.211 - - [01/Jan/1970:00:59:59 +0100] "xmlns:s="http://schemas.xmlsoap.org/soap/envelope/";> >Basica

RE: Tomcat 6 and Windows Service

2013-06-03 Thread Jeffrey Janner
> From: walter.heesterm...@toyota-europe.com > [mailto:walter.heesterm...@toyota-europe.com] > Sent: Monday, June 03, 2013 3:01 AM > To: users@tomcat.apache.org > Subject: Tomcat 6 and Windows Service > > Hi, > > I'm running tomcat as Windows service. > > Now I like to add JMX support to the pr

.net web service client calling Tomcat 7

2013-06-03 Thread Jan Vávra
Hello, I have a METRO web service at Tomcat 7.0.39 (S). The service is under http basic authentication. I have written own realm for http basic authentication. The realm's implementation is very small. It's something like read ini file with username with passwords. Few lines ... Our customer

Re: Tomcat 6 and Windows Service

2013-06-03 Thread Konstantin Kolinko
2013/6/3 > > Hi, > > I'm running tomcat as Windows service. > > Now I like to add JMX support to the process: > > -Dcom.sun.management.jmxremote.port=10150 > -Dcom.sun.management.jmxremote.ssl=false > -Dcom.sun.management.jmxremote.authenticate=false > > Configuring the service > > > > added the a

RE: WebSockets Thread Safety question

2013-06-03 Thread Martin Gainty
/java/util>javap Collections | grep synchronized public static java.util.Collection synchronizedCollection(java.util.Collecti on); static java.util.Collection synchronizedCollection(java.util.Collection, jav a.lang.Object); public static java.util.Set synchronizedSet(java.util.Set);

Re: WebSockets Thread Safety question

2013-06-03 Thread chris derham
> When I use the syntax from the samples in the onTextMessage() method, I get > ConcurrentModificationException if I have more than one client sending data > to the server at the same time: > > for(MyMessageInbound mmib: mmiList){ > CharBuffer buffer = CharBuffer.wrap(cb

Re: WebSockets Thread Safety question

2013-06-03 Thread Mark Thomas
On 03/06/2013 08:45, Martin Schmiedel wrote: > About the mmiList object, why isn't it a Threadsafe Collection? Where / how is that object declared? Mark - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For addition

Re: Scalable WebSocket broadcast with Tomcat 7

2013-06-03 Thread Mark Thomas
On 02/06/2013 21:12, Dimitri wrote: > Hi, > > I am developing a collaboration webapp using Tomcat 7 implementation of > WebSockets. Imagine we have a 1000+ of connected clients, each of them > having his own WsOutbound. How do we implement broadcast messages in a > scalable way? Yet I've seen only

Re: Making sure I understand application startup order correctly

2013-06-03 Thread Mark Thomas
On 01/06/2013 16:59, Nick Williams wrote: > Off-topic, I should point out that I believe this is also a potential flaw in > the Tomcat WebSocket filter registration. It is also mapped > isMatchAfter=false. So, if someone were to add similar logging/auth filters > to their deployment descriptor,

Tomcat 6 and Windows Service

2013-06-03 Thread Walter . Heestermans
Hi, I'm running tomcat as Windows service. Now I like to add JMX support to the process: -Dcom.sun.management.jmxremote.port=10150 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false Configuring the service added the above options to the Java options. T

WebSockets Thread Safety question

2013-06-03 Thread Martin Schmiedel
I have recently had problems with a simple WebSocket sample I'm developing. Tomcat Version is 7.0.39. When I use the syntax from the samples in the onTextMessage() method, I get ConcurrentModificationException if I have more than one client sending data to the server at the same time: