Re: [us...@httpd] How to mount JBoss in Subdir

2009-02-17 Thread Krist van Besien
On Tue, Feb 17, 2009 at 12:54 PM, carsten wrote: > rewriting does not work (at least we have used the wrióng ruLe) > If one can point us in the right direction, please. An example will be nice, > too One solution would be not to use mod_jk and in stead just proxy to the tomcat's http port. That

Re: [us...@httpd] RE: port 80 + 8080 + SSL (443)

2009-02-17 Thread Krist van Besien
On Wed, Feb 18, 2009 at 7:35 AM, KURT PETERS wrote: > Thanks for your help. The *:80 method seems to work. Just have 2 follow-up > questions: > > 1) Did I need to put the Listen 443 AFTER the for the 80 and > 8080? In other words, does apache2 do the parsing of virtual hosts and > "listens" in

[us...@httpd] RE: port 80 + 8080 + SSL (443)

2009-02-17 Thread KURT PETERS
Thanks for your help. The *:80 method seems to work. Just have 2 follow-up questions: 1) Did I need to put the Listen 443 AFTER the for the 80 and 8080? In other words, does apache2 do the parsing of virtual hosts and "listens" in order? 2) I use godaddy's forwarding feature for my domain

Re: [us...@httpd] Why Would Apache be so slow??

2009-02-17 Thread Tony Anecito
Hi Andre, Here is another thought that might explain things. Suppose a web page has up to 10 22KB images for tabs and the browser opens up say 8 sockets and the bandwidth of the user was 1Mbps. Would the fact that many sockets were allowed by the browser saturate the user side bandwidth? Like C

Re: [us...@httpd] Why Would Apache be so slow??

2009-02-17 Thread Tony Anecito
Hi Andre, Thanks for the writeup. I have fiber instead of copper but I suspec the fiber is shared by putting in some type of optical hub perhaps. That said I had a troubleshooting session with the ISP and it was narrowed down to the network somewhere. He wanted me to bypass the router so I just

[us...@httpd] Authentication/Authorization using HTTP Server

2009-02-17 Thread Vasanth Kumar ravi
Is it possible to have authentication implemented at the Apache HTTP Server , using the Oracle database as Authorization provider. We have a application setup with Apache web server(2.0.X)/Weblogic App server(9.X)/Oracle DB(10g). We would like to implement a custom login page at the Apache , which

Re: [us...@httpd] Why Would Apache be so slow??

2009-02-17 Thread André Warnier
In short, what your tests are showing you is that Apache on its own (not quite, but close enough) gives you the file in 20 ms. The rest (the 5000 ms you measured before, minus 20 ms) is the network. Score : Apache 1, network 249. That should give you a pretty good indication of what to focus on

Re: [us...@httpd] Why Would Apache be so slow??

2009-02-17 Thread Tony Anecito
Thanks for the advice. I did make a change to the modules section but like you said I suspect the problem is outside of Apache. My network setup uses a DLINK 1Gbps gaming router connected to the ISP wire to fiber converter then from there to the internet somehow. On the other side of my router

Re: [us...@httpd] Why Would Apache be so slow??

2009-02-17 Thread André Warnier
Tony Anecito wrote: Hi All, I am using Apache 2.4 and it is taking 10s of seconds to download small files. for example: 200 49018 5046875 [...] > This is extreemly frustrating to see Apache so slow. Hi. It is also quite frustrating to see someone jumping to conclusions like that, when o

[us...@httpd] Re: Too many open files (24) - ulimit not obeyed - plimit says yes

2009-02-17 Thread Fletcher Cocquyt
Arnab Ganguly gmail.com> writes: > > > I assume you tried "ulimit -H -n 65536" in the apachectl, also echo the changed value within the script see the changes are getting affected for the current process.Next is can you see the TCP states of the socket opened, it is quite possible the sockets a

Re: [us...@httpd] mod_proxy not displaying images

2009-02-17 Thread Nick Kew
Matt McCutchen wrote: I also suggest that you try a test case other than Google in case Google tries to block people from proxy-passing to them. Google doesn't stop you proxying, but it does redirect to your country, taking you out of scope of your rules. That makes it tricky to proxy unles

Re: [us...@httpd] Why Would Apache be so slow??

2009-02-17 Thread Tony Anecito
Okay. I enabled loading of what I hope are the right modules and added if statements for mem cache. Hopefully this solves the problem. My conf file section I changes now is: LoadModule actions_module modules/mod_actions.so LoadModule alias_module modules/mod_alias.so LoadModule asis_module modu

Re: [us...@httpd] mod_proxy not displaying images

2009-02-17 Thread Matt McCutchen
On Tue, 2009-02-17 at 11:59 -0500, Christopher Long wrote: > I'm attempting to use mod_proxy to display various webpages via > ProxyPass. I'm having issues getting the images to properly come > through. Here is what I have in /conf/httpd.conf: > > > > > ProxyRequests Off > > >Order deny

Re: [us...@httpd] Re: GUI for configuring Apache httpd by editing httpd.conf

2009-02-17 Thread Tom Evans
On Tue, 2009-02-17 at 07:55 +0300, Mohammed obaidan wrote: > Hi, > > Apache is not for web server admins. what about developers? What about > home servers? What about users that needs a certain web application on > their intranet? do they need to be web server admins to use Apache? > certainly not

Re: [us...@httpd] Why Would Apache be so slow??

2009-02-17 Thread Tony Anecito
Hi All, Here is my module setup hopefully it will point out something I am missing. LoadModule actions_module modules/mod_actions.so LoadModule alias_module modules/mod_alias.so LoadModule asis_module modules/mod_asis.so LoadModule auth_basic_module modules/mod_auth_basic.so #LoadModule auth_dig

Re: [us...@httpd] Why Would Apache be so slow??

2009-02-17 Thread Glen Barber
On Tue, Feb 17, 2009 at 12:14 PM, Tony Anecito wrote: > Any ideas? Any tools I can use to diagnose the problem? I tried using ab from > the Apache bin directory but I get invalid url when I try it. There is a tool called 'apachetop', but I don't know if it is available for Win32. -- Glen Barbe

[us...@httpd] Why Would Apache be so slow??

2009-02-17 Thread Tony Anecito
Hi All, I am using Apache 2.4 and it is taking 10s of seconds to download small files. for example: 200 49018 5046875 The firs param is the http status the second the file size and the third the time %D or 5 seconds. I tried a dsl speed test and I am getting 2Mbps upload which seems healthy.

[us...@httpd] mod_proxy not displaying images

2009-02-17 Thread Christopher Long
Hello: I'm attempting to use mod_proxy to display various webpages via ProxyPass. I'm having issues getting the images to properly come through. Here is what I have in /conf/httpd.conf: ProxyRequests Off Order deny,allow Allow from all ProxyPass/google/ http://www.google.com

[us...@httpd] Re: mod_authnz_ldap and UTF-8

2009-02-17 Thread Dan Poirier
"Mark H. Wood" writes: > On Mon, Feb 16, 2009 at 01:24:31PM -0500, Eric Covener wrote: >> This a fringe option. You might have better luck trying to coerce >> browsers into sending utf-8 or avoiding non-ascii usernames >> altogether. > > "Professor Wöhler, we can mis-spell your name 'Wohler' or w

Re: [us...@httpd] mod_authnz_ldap and UTF-8

2009-02-17 Thread Mark H. Wood
On Mon, Feb 16, 2009 at 01:24:31PM -0500, Eric Covener wrote: > This a fringe option. You might have better luck trying to coerce > browsers into sending utf-8 or avoiding non-ascii usernames > altogether. "Professor Wöhler, we can mis-spell your name 'Wohler' or we can mis-spell it 'Woehler', but

Re: [us...@httpd] how do I redirect wsdl calls to local disk

2009-02-17 Thread Krist van Besien
On Tue, Feb 17, 2009 at 3:22 PM, Jones Scott - sjones wrote: > But I can't seem to get a rewrite rule that will work. Thus, I posted > this note for some help RewriteRules only work on the URL, not on the query string. if you also want to match the query string you need to add a RewriteCond that

Re: [us...@httpd] how do I redirect wsdl calls to local disk

2009-02-17 Thread Karel Kubat
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Scott, On Feb 17, 2009, at 3:22 PM, Jones Scott - sjones wrote: But I can't seem to get a rewrite rule that will work. Thus, I posted this note for some help [...] I am trying to bypass an error on the JBoss server. There is an error that JBoss

RE: [us...@httpd] how do I redirect wsdl calls to local disk

2009-02-17 Thread Jones Scott - sjones
But I can't seem to get a rewrite rule that will work. Thus, I posted this note for some help -Original Message- From: Jones Scott - sjones [mailto:scott.jo...@acxiom.com] Sent: Tuesday, February 17, 2009 8:10 AM To: users@httpd.apache.org Subject: RE: [us...@httpd] how do I redirect wsd

RE: [us...@httpd] how do I redirect wsdl calls to local disk

2009-02-17 Thread Jones Scott - sjones
I am trying to bypass an error on the JBoss server. There is an error that JBoss 4.0.2 gives after concurrent access to the wsdl. Most of our clients use the WSDL once. But we have a couple that put it inline with their code. I thought a good short term work around is to have the WSDLs static o

Re: [us...@httpd] Re: Problem with accessing svn.apache.org

2009-02-17 Thread an...@iguanait.com
Thanks for the reply. It returned back before 2 hours around. It is ok now :) Thanks again! On Tue, 2009-02-17 at 08:10 -0500, Dan Poirier wrote: > No problem here. The problem might have been temporary, or it could be > local to you. Try it again. > -

Re: [us...@httpd] Re: GUI for configuring Apache httpd by editing httpd.conf

2009-02-17 Thread André Warnier
Peter Schober wrote: * Glen Barber [2009-02-16 18:10]: On Mon, Feb 16, 2009 at 11:40 AM, John Hudak wrote: DITTO!!! In the 'bad old days' of computing, everything was based on a text file. It forces one to really understand what is behind the changes. I for one do not subscribe to the 'dumb

[us...@httpd] Re: Problem with accessing svn.apache.org

2009-02-17 Thread Dan Poirier
No problem here. The problem might have been temporary, or it could be local to you. Try it again. -- Dan Poirier - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/users

[us...@httpd] How to mount JBoss in Subdir

2009-02-17 Thread carsten
Hello, We can mount our application deployed in JBoss with JKmount. It works fine. But we can reach this app only over an url of this form: http:/ourserver/appcontext This is done via an mount of JKMount /appcontext worker Now we ha´ve to reach our app over an url of this form http:/ourserver/ext

Re: [us...@httpd] how do I redirect wsdl calls to local disk

2009-02-17 Thread Krist van Besien
On Mon, Feb 16, 2009 at 6:19 PM, Jones Scott - sjones wrote: > I am using apache in our DMZ. It is using mod_jk to redirect all calls to > JBoss 4.0.2 > > > > I need to redirect the product/1.0?wsdl requests to stay on the apache > server. Why do you need that? A wsdl is generated by a webservic

Re: [us...@httpd] Proxy needs to rewrite parameters in QueryString

2009-02-17 Thread Krist van Besien
On Fri, Feb 13, 2009 at 12:52 PM, Andreas Dahlén wrote: > A succefull LoginRequest is redirected by the Location-header > Location: > http://login.internal.com?LoginSuccess?servername=http://backend1.internal.com This isn't a legal URL. Is this really what is returned? RewriteRules don't operat

Re: [us...@httpd] Error log entries about CGI script

2009-02-17 Thread Kevin O'Gorman
On Tue, Feb 17, 2009 at 12:27 AM, Karel Kubat wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Kevin, > > On Feb 16, 2009, at 10:53 PM, Kevin O'Gorman wrote: > The entries look like this [Mon Feb 16 07:53:53 2009] [error] [client 74.6.22.153] client denied by server conf

[us...@httpd] Problem with accessing svn.apache.org

2009-02-17 Thread an...@iguanait.com
Hi, can you give me some information why i cannot access svn.apache.org. It was working until yesterday. Is there some changes or some problem with this subdomain? I can access apache.org, but not svn.apache.org - The offici

Re: [us...@httpd] mod_authnz_ldap and UTF-8

2009-02-17 Thread Marc Patermann
Hi Eric, Eric Covener schrieb: This a fringe option. What does that mean? You might have better luck trying to coerce browsers into sending utf-8 The authentication is on a WebDAV site. So there is no web page I could code charset headers in. (If that is what you mean.) I tried IndexOption

Re: [us...@httpd] Error log entries about CGI script

2009-02-17 Thread Karel Kubat
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kevin, On Feb 16, 2009, at 10:53 PM, Kevin O'Gorman wrote: The entries look like this [Mon Feb 16 07:53:53 2009] [error] [client 74.6.22.153] client denied by server configuration: /usr/htdocs/10 The corresponding access log entries are like th