[jboss-user] [Tomcat Integration] - Re: Session is getting merge with other session

2009-12-11 Thread jfrederic.cl...@jboss.com
Normally yes. If not there is a bug somewhere.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4270199#4270199

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4270199
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat Integration] - Re: Session is getting merge with other session

2009-12-11 Thread jfrederic.cl...@jboss.com
http://kbase.redhat.com/faq/docs/DOC-17273 is right but you must be aware that 
changes the cookie session path to /your_app which may have side effect if you 
have more that one context deployed.

"when the session cookie is being used in the URL" I guess you mean when the 
session cookie is urlencoded (no cookies)
those sessionid WON'T be reused.


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4270132#4270132

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4270132
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat Integration] - Re: JBOSS 4.0.5 and tomcat 5.5.28

2009-12-07 Thread jfrederic.cl...@jboss.com
The security issues fixed in 5.5.28  are in the CP's of jbossas-4.0.5. You get 
the corrections via a subscription.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4269267#4269267

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4269267
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat Integration] - Re: jbossweb-tomcat.sar upgrade to Tomcat 5.5.28

2009-10-20 Thread jfrederic.cl...@jboss.com
See http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4260820#4260820

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4261183#4261183

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4261183
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat Integration] - Re: JSP pre compilation vs. JBoss 5

2009-09-15 Thread jfrederic.cl...@jboss.com
The annotations are processed a different way in JBoss Web you can't use the 
tomcat6 plugin.
I don't think that there is a plugin for JBoss Web, you should use JspC and ant.
See 
http://labs.jboss.com/file-access/default/members/jbossweb/freezone/docs/latest/jasper-howto.html
 for more details.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4255438#4255438

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4255438
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat Integration] - Re: Tomcat encoding

2009-08-31 Thread jfrederic.cl...@jboss.com
According to a quick try:
+++
curl -v http://localhost:8080/toto
 ...
< HTTP/1.1 404 Not Found
< Server: Apache-Coyote/1.1
< Content-Type: text/html;charset=utf-8
< Content-Length: 975
+++

What headers are you getting?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4252573#4252573

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4252573
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Allowing HTTP responses with non-standart status (securi

2009-07-30 Thread jfrederic.cl...@jboss.com
+++
javax.servlet.ServletException: non-HTTP request or response
at javax.servlet.http.HttpServlet.service(HttpServlet.java:686)
+++
I think that you are not using the right version of servlet-api.jar recompile 
your application with the right servlet-api.


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4246879#4246879

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4246879
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Tomcat version included in JBoss 4.2.3

2009-07-23 Thread jfrederic.cl...@jboss.com
The question is already answered in 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4172529#4172529

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245180#4245180

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245180
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Support maxThreads minSpareThreads maxSpareThreads ?

2009-07-12 Thread jfrederic.cl...@jboss.com
The connectors share most of their code, if in your version maxspareThreads 
works for http it should work for ajp too.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4243158#4243158

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4243158
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Some benchmarking or testimonials on using APR Native on

2009-07-07 Thread jfrederic.cl...@jboss.com
And http://labs.jboss.com/jbossweb/index.html for SSL tests.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4242122#4242122

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4242122
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: PermGen error

2009-07-05 Thread jfrederic.cl...@jboss.com
That looks like a leak somewhere. Check the application in your war file.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4241644#4241644

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4241644
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Problem with NDC

2009-06-26 Thread jfrederic.cl...@jboss.com
Just to get it right NDC is org.apache.log4j.NDC, isn't it?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4240341#4240341

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4240341
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Certificate and form login in one WAR

2009-06-24 Thread jfrederic.cl...@jboss.com
You can't have a multiple login-config in the web.xml of a webapp.


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4239641#4239641

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4239641
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Certificate and form login in one WAR

2009-06-24 Thread jfrederic.cl...@jboss.com
Yep just have 2 security-constraint in the web.xml one with:
CONFIDENTIAL
the other with something like:

  | 
  |   manager
  | 
  | 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4239624#4239624

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4239624
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Browser hangs intermittently when request for images are

2009-06-15 Thread jfrederic.cl...@jboss.com
JbossWeb native is just a native component just install it and restart jboss to 
use it. (See http://www.jboss.org/jbossweb/install/index.html)

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4237618#4237618

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4237618
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Browser hangs intermittently when request for images are

2009-06-15 Thread jfrederic.cl...@jboss.com
See https://jira.jboss.org/jira/browse/JBPAPP-366

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4237601#4237601

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4237601
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: emptySessionPath with HTTP/1.1 Connector

2009-06-15 Thread jfrederic.cl...@jboss.com
See http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4237596#4237596

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4237598#4237598

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4237598
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Tomcat / JBoss mod_jk with Apache Bad Gateway

2009-06-10 Thread jfrederic.cl...@jboss.com
worker.node1.socket_timeout=10
Try to increase the value or use reply_timeout see 
http://tomcat.apache.org/connectors-doc/reference/workers.html

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4236894#4236894

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4236894
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: No Tomcat V6 advanced IO in JbossAS 4.2.3.GA?

2009-05-07 Thread jfrederic.cl...@jboss.com
Am working on the doc so it should be more understandable soon.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4229369#4229369

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4229369
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: No Tomcat V6 advanced IO in JbossAS 4.2.3.GA?

2009-05-07 Thread jfrederic.cl...@jboss.com
It is not "Contrary"...

According to the http://www.jboss.org/community/docs/DOC-12545 as advanced IO 
has been included in JBossWEB 2.1.x, Advanced IO are only available in 5.0.x, 
5.0.0 and higher version of AS. 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4229355#4229355

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4229355
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: No Tomcat V6 advanced IO in JbossAS 4.2.3.GA?

2009-05-07 Thread jfrederic.cl...@jboss.com
JBossWeb is in JBossAS, but you need to use the 5.x version to have the 
advanced IO.

JBossWeb is based on Tomcat but it not Tomcat.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4229304#4229304

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4229304
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: No Tomcat V6 advanced IO in JbossAS 4.2.3.GA?

2009-05-06 Thread jfrederic.cl...@jboss.com
Look to 
http://www.jboss.org/file-access/default/members/jbossweb/freezone/docs/2.1.2/aio.html

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4229258#4229258

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4229258
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: JBoss kills accept-encoding Header?!?!

2009-03-19 Thread jfrederic.cl...@jboss.com
Could try to a newer Jboss version 4.0.x or 4.2.x/4.3.x or better with 5.x?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4219368#4219368

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4219368
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: http proxy servlet

2009-03-03 Thread jfrederic.cl...@jboss.com
Add a Connector in server.xml and try a Valve to decide what goes to the proxy. 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4214774#4214774

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4214774
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Comet support in JBoss 5.0.0.GA

2009-02-27 Thread jfrederic.cl...@jboss.com
You should use the APR connector.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4213600#4213600

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4213600
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Rewrite url, http code 302 instead of 301.

2009-02-12 Thread jfrederic.cl...@jboss.com
Ok I was fixed it.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4209393#4209393

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4209393
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Should I front Tomcat with Apache

2009-02-12 Thread jfrederic.cl...@jboss.com
Stop complaining about JBWEB-82 apply the patch of 
https://jira.jboss.org/jira/browse/JBPAPP-366.

If you don't have static pages using httpd won't give any performances 
improvements

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4209372#4209372

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4209372
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Rewrite url, http code 302 instead of 301.

2009-02-11 Thread jfrederic.cl...@jboss.com
4.3.x and 4.2.x doesn't contain the patch of JBWEB-67.
5.x should work.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4208873#4208873

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4208873
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: How to redirect permanent with code 301 (JSF + facelet x

2009-01-27 Thread jfrederic.cl...@jboss.com
Try 
http://www.jboss.org/file-access/default/members/jbossweb/freezone/docs/2.1.1/rewrite.html

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4204937#4204937

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4204937
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Comet support in JBoss 5.0.0.GA

2008-12-31 Thread jfrederic.cl...@jboss.com
There isn't a  org.jboss.web.comet.CometProcessor in the actual JBossWeb 
documentation...
org.jboss.web.comet.CometProcessor has been removed and 
org.jboss.servlet.http.HttpEventServlet should be used instead.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4199025#4199025

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4199025
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: What version of tomcat is embedded in jboss 4.2.3?

2008-12-02 Thread jfrederic.cl...@jboss.com
4.2.2 is using JBossWEB 2.0.1.GA and the vulnerabilities are not fixed in old 
community versions.

If you want to be safe use Jboss supported product.
You can also build JWB 2.0.x from the lastest CP tag and replace the jar files 
in you 4.2.2. (Look in the forum it is already explain somewhere).

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4193929#4193929

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4193929
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user