Re: tomcat6, bottleneck, concurrent requests, windows xp

2008-12-14 Thread kazukin6
) Michael Ludwig-6 wrote: kazukin6 schrieb am 13.12.2008 um 18:15:33 (-0800): 1) there is maxThreads=100 in context.xml 2) sending 100 simultaneous requests to one servlet, for example ab.exe -n 100 -c 100 {address} 3) in the servlet's own log for performance

tomcat6, bottleneck, concurrent requests, windows xp

2008-12-13 Thread kazukin6
- 1) there is maxThreads=100 in context.xml 2) sending 100 simultaneous requests to one servlet, for example ab.exe -n 100 -c 100 {address} 3) in the servlet's own log for performance it shows around only 200-500 ms per request 4) in the ab.exe log it shows around 7

Re: Question is answered. See Bill Barker-2 answer (update)

2008-09-17 Thread kazukin6
Hi Chris! They can upload them using javascript file manager Totally rejecting scripting seems to be more robust solution Christopher Schultz-2 wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kazukin, kazukin6 wrote: And yes, for us it' not possible to give users to change

Re: Disable java code execution %blabla% in jsp, but permits tags

2008-09-13 Thread kazukin6
We want them to be able to customize information they get from our system by using custom tags H. Hall wrote: kazukin6 wrote: Plz Help !! Is it possible to disable all java code execution within jsp page (by security manager or something) but allow custom tags to be executed

Question is answered. See Bill Barker-2 answer

2008-09-13 Thread kazukin6
to customize information they get from our system by using custom tags H. Hall wrote: kazukin6 wrote: Plz Help !! Is it possible to disable all java code execution within jsp page (by security manager or something) but allow custom tags to be executed? The problem

RE: Question is answered. See Bill Barker-2 answer

2008-09-13 Thread kazukin6
% in jsp, but permits tags We want them to be able to customize information they get from our system by using custom tags H. Hall wrote: kazukin6 wrote: Plz Help !! Is it possible to disable all java code execution within jsp page (by security manager or something

RE: Question is answered. See Bill Barker-2 answer (update)

2008-09-13 Thread kazukin6
And yes, for us it' not possible to give users to change only parts of jsp's and deny execution of these parts based on some credential assessments executed during some if checkAccess tags kazukin6 wrote: Martin, thanks for a guide! I took a look at the Jetspeed (and portlet specifications

Re: Disable java code execution %blabla% in jsp, but permits tags

2008-09-11 Thread kazukin6
Hi, Bill!! Thank you a lot!! It seems, it's exactly what I need Bill Barker-2 wrote: kazukin6 [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Plz Help !! Is it possible to disable all java code execution within jsp page (by security manager or something) but allow custom

Re: Disable java code execution %blabla% in jsp, but permits tags

2008-09-11 Thread kazukin6
), and what about changing some crutial standard java properties, like system encoding? 4) No any fake operations to load the processor, like while(true){do something useless} 5) -? 2) and maybe 3) are implementable, I suppose, but I'm not sure about 1) 4) and 5) Juha Laiho wrote: kazukin6

Disable java code execution %blabla% in jsp, but permits tags

2008-09-10 Thread kazukin6
Plz Help !! Is it possible to disable all java code execution within jsp page (by security manager or something) but allow custom tags to be executed? The problem is that the users can change jsp files, and due to security reasons we can allow them to use only tags -- View this message in

Tomcat6 map subdomain to particular directory under web root

2008-07-18 Thread kazukin6
server.xml Host name=localhost appBase=webapps unpackWARs=true autoDeploy=true xmlValidation=false xmlNamespaceAware=false Aliasw1.localhost/Alias /Host Using alias w1.localhost maps subdomain to web root directory Is there any trick to map

RE: Tomcat6 map subdomain to particular directory under web root

2008-07-18 Thread kazukin6
Caldarale, Charles R wrote: You can use Tuckey's URL rewrite filter (http://tuckey.org/urlrewrite/) or you could use virtual hosts: instead of the Alias, define a second Host with an appBase pointing to the desired directory. - Chuck Chuck, thanks a lot! 1) I didnt manage to get the