AW: Suppress or replace WWW-Authorization header

2015-10-28 Thread Torsten Rieger
I have a legacy java-SOAP-client that only supports BASIC authentication (send the Authorization: Basic... header) and a AngularJS application that consumes a REST-service (also sending the Authorization: Basic header). The server supports two kinds of deployment: Standalone with an embedded

Re: AW: Suppress or replace WWW-Authorization header

2015-10-28 Thread tomcat
Hi. on this list, as per http://tomcat.apache.org/lists.html#tomcat-users #6 , it is preferred if you respond below the question being asked (or the previous response) rather than on top. (The main reason being that it is easier that way to follow the normal gist of the conversation, rather

Re: AW: Tomcat 6, DB2 Driver Problems

2015-10-28 Thread Christopher Schultz
Simone, On 10/28/15 4:02 AM, simone.rodenbach@devk.de wrote: > I tried to google for the driver and classloader and found nothing that > helped me :-( > I can only provide you with this information: > > I configured the datasource in the context.xml > >

Re: AW: Suppress or replace WWW-Authorization header

2015-10-28 Thread tomcat
On 28.10.2015 15:39, Christopher Schultz wrote: Torsten, On 10/28/15 8:19 AM, Torsten Rieger wrote: I have a legacy java-SOAP-client that only supports BASIC authentication (send the Authorization: Basic... header) and a AngularJS application that consumes a REST-service (also sending the

Re: AW: Suppress or replace WWW-Authorization header

2015-10-28 Thread Christopher Schultz
Torsten, On 10/28/15 8:19 AM, Torsten Rieger wrote: > I have a legacy java-SOAP-client that only supports BASIC authentication > (send the Authorization: Basic... header) and a AngularJS application that > consumes a REST-service (also sending the Authorization: Basic header). > > The server

Re: jsp to servlet

2015-10-28 Thread Christopher Schultz
On 10/28/15 4:27 AM, Суржин Константин Вадимович wrote: >> You are asking for a bean with the class name "Animal", and the JSP compiler >> and/or runtime >can't find it. I'm guessing you meant to use >> "org.animal.Animal" here? > > > > JSP compiler produce next servlet code: >

AW: AW: Suppress or replace WWW-Authorization header

2015-10-28 Thread Torsten Rieger
-Ursprüngliche Nachricht- Von: Christopher Schultz [mailto:ch...@christopherschultz.net] Gesendet: Mittwoch, 28. Oktober 2015 15:39 An: Tomcat Users List Betreff: Re: AW: Suppress or replace WWW-Authorization header Torsten, On 10/28/15 8:19 AM, Torsten Rieger

RE: jsp to servlet

2015-10-28 Thread Суржин Константин Вадимович
>You are asking for a bean with the class name "Animal", and the JSP compiler >and/or runtime >can't find it. I'm guessing you meant to use >"org.animal.Animal" here? JSP compiler produce next servlet code: org.animal.Animal animalBean_1 = new org.animal.Animal(); It's OK without import

Suppress or replace WWW-Authorization header

2015-10-28 Thread Torsten Rieger
Hi, I try to suppress the browser login-dialog on basic authentication (basic is a legacy requirement), how can I do that? Filters are called after login on the container, right? Regards, Torsten

AW: Tomcat 6, DB2 Driver Problems

2015-10-28 Thread Simone.Rodenbach.ext
Hi Christopher, I tried to google for the driver and classloader and found nothing that helped me :-( I can only provide you with this information: I configured the datasource in the context.xml The spring bean I created a test project. Because oft hat I'm sure that I don't start a

Re: AW: Suppress or replace WWW-Authorization header

2015-10-28 Thread Aurélien Terrestris
You can choose between a pop-up or an HTML FORM This one looks like this in web.xml : FORM webapp global realm /login.jsp /error_login.jsp 2015-10-28 16:28 GMT+01:00 Torsten Rieger : > -Ursprüngliche Nachricht- > Von:

Re: AW: Suppress or replace WWW-Authorization header

2015-10-28 Thread tomcat
On 28.10.2015 16:55, chris derham wrote: No, container BASIC authentication should be enabled, the container should handle the authentication, but the browser should not show his ugly default login dialog when I request resources from the REST-service with wrong credentials. When the REST-client

Re: AW: Suppress or replace WWW-Authorization header

2015-10-28 Thread chris derham
> No, container BASIC authentication should be enabled, the container should > handle the authentication, but the browser should not show his ugly default > login dialog when I request resources from the REST-service with wrong > credentials. > When the REST-client (web-application in the browser)

AW: AW: Suppress or replace WWW-Authorization header

2015-10-28 Thread Torsten Rieger
-Ursprüngliche Nachricht- Von: Aurélien Terrestris [mailto:aterrest...@gmail.com] Gesendet: Mittwoch, 28. Oktober 2015 16:45 An: Tomcat Users List Betreff: Re: AW: Suppress or replace WWW-Authorization header You can choose between a pop-up or an HTML FORM This

Re: Class Loader Problems with Tomcat 8 + Ant Task

2015-10-28 Thread Amit Lonkar
Sorry for the delayed response. Here is the full stack trace. I was assuming that my webapp would look in WEB-INF/lib for the ant jar and not in the Tomcat/lib. Am I incorrect ?? Thx Amit HTTP Status 500 - Servlet execution threw an exception type Exception report message Servlet execution

RE: AW: AW: Suppress or replace WWW-Authorization header

2015-10-28 Thread George Stanchev
On 28.10.2015 17:42, Torsten Rieger wrote: > -Ursprüngliche Nachricht- > Von: Aurélien Terrestris [mailto:aterrest...@gmail.com] > Gesendet: Mittwoch, 28. Oktober 2015 16:45 > An: Tomcat Users List > Betreff: Re: AW: Suppress or replace WWW-Authorization header >

Re: AW: AW: Suppress or replace WWW-Authorization header

2015-10-28 Thread tomcat
On 28.10.2015 17:42, Torsten Rieger wrote: -Ursprüngliche Nachricht- Von: Aurélien Terrestris [mailto:aterrest...@gmail.com] Gesendet: Mittwoch, 28. Oktober 2015 16:45 An: Tomcat Users List Betreff: Re: AW: Suppress or replace WWW-Authorization header You can

Re: AW: AW: Suppress or replace WWW-Authorization header

2015-10-28 Thread Andy Wang
On 10/28/2015 12:04 PM, André Warnier (tomcat) wrote: The server supports two kinds of deployment: Standalone with an embedded Jetty-server and as war-file for app-servers (most of them are tomcat-server). I try to suppress the browser BASIC-login-dialog for the REST-service-calls from

Re: AW: AW: Suppress or replace WWW-Authorization header

2015-10-28 Thread Christopher Schultz
Torsten, On 10/28/15 11:28 AM, Torsten Rieger wrote: > -Ursprüngliche Nachricht- > Von: Christopher Schultz [mailto:ch...@christopherschultz.net] > Gesendet: Mittwoch, 28. Oktober 2015 15:39 > An: Tomcat Users List > Betreff: Re: AW: Suppress or replace

Re: AW: AW: Suppress or replace WWW-Authorization header

2015-10-28 Thread tomcat
On 28.10.2015 17:42, Torsten Rieger wrote: -Ursprüngliche Nachricht- Von: Aurélien Terrestris [mailto:aterrest...@gmail.com] Gesendet: Mittwoch, 28. Oktober 2015 16:45 An: Tomcat Users List Betreff: Re: AW: Suppress or replace WWW-Authorization header You can

Re: AW: Suppress or replace WWW-Authorization header

2015-10-28 Thread Christopher Schultz
Chris, On 10/28/15 11:55 AM, chris derham wrote: >> No, container BASIC authentication should be enabled, the container should >> handle the authentication, but the browser should not show his ugly default >> login dialog when I request resources from the REST-service with wrong >> credentials.

Re: Class Loader Problems with Tomcat 8 + Ant Task

2015-10-28 Thread Christopher Schultz
Amit, On 10/28/15 1:18 PM, Amit Lonkar wrote: > Sorry for the delayed response. Here is the full stack trace. I was assuming > that my webapp would look in WEB-INF/lib for the ant jar and not in the > Tomcat/lib. Am I incorrect ?? There must be some component that is sure it wants to use the

Re: Tomcat answers on port 80, not on 443

2015-10-28 Thread Christopher Schultz
Gregory, On 10/27/15 1:57 PM, Beyer, Gregory L wrote: > Still struggling with this. I'm amazed that implementing SSL in > Tomcat is so difficult. It's not in straight Apache, or IIS. Is > Tomcat really so different an animal? No, Tomcat is not so different an animal. But you aren't using

RE: Tomcat Server and PHP Extensions

2015-10-28 Thread George Stanchev
You need Apache, not Tomcat -Original Message- From: Chris Thompson [mailto:cthomp...@conveyor-dynamics.com] Sent: Wednesday, October 28, 2015 5:20 PM To: users@tomcat.apache.org Subject: Tomcat Server and PHP Extensions Does Tomcat Server support PHP extensions? I am looking at

mod_jk make error with OSX 10.11.1

2015-10-28 Thread Youngho Cho
Hello, Just before I upgrade to OSX 10.11.1 And try to compile Apache mod_jk 1.2.41. But the make is fail. YounghoiMac:native youngho$ sudo make Making all in common usr/share/apr-1/build-1/libtool --silent --mode=compile

Re: mod_jk make error with OSX 10.11.1

2015-10-28 Thread Christopher Schultz
Youngho, On 10/28/15 10:35 PM, Youngho Cho wrote: > Just before I upgrade to OSX 10.11.1 > > And try to compile Apache mod_jk 1.2.41. > > But the make is fail. > > YounghoiMac:native youngho$ sudo make > > Making all in common > usr/share/apr-1/build-1/libtool --silent --mode=compile >

Tomcat Server and PHP Extensions

2015-10-28 Thread Chris Thompson
Does Tomcat Server support PHP extensions? I am looking at installing TeamPass on our system and it requires PHP. Thanks, Christopher - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands,

Re: Suppress or replace WWW-Authorization header

2015-10-28 Thread tomcat
Hi. On 28.10.2015 09:36, Torsten Rieger wrote: Hi, I try to suppress the browser login-dialog on basic authentication (basic is a legacy requirement), how can I do that? Filters are called after login on the container, right? I am not sure that I understand exactly what you mean here, and