Tagged Questions

2
votes
1answer
250 views

IIS -> Isapi_Redirect -> Tomcat

I've been trying for days to get Tomcat up and running through IIS via the Jakarta Connector. I've followed all of Microsoft's instructions -- put the connector .dll in %tomcatdir%\bin\win32\i386\, …
1
vote
6answers
106 views

Is there something in j2se or Jakarta commons thats converts a number to an array of digits?

I hate to code what is already available. I can't seem to find in Jakarta commons a method that would to the following: long x= 12345; int[] digits = toDigitsArray(x); //[1,2,3,4,5] So before I …
0
votes
2answers
12 views

why does tomcat take time to recognize the folder on shutting down and restarting it?

I work on a folder and tomcat recognizes the folder. But, when I shutdown and restart tomcat it is taking time to recognize the same folder. Can anybody tell me why? I see the error report in …
0
votes
1answer
103 views

JMeter - how to log the full request for a failed response?

Hi folks, i'm using JMeter command line to stress test our website api. Now, here's a sample result i'm getting back: Creating summariser <summary> Created the tree successfully using …
0
votes
2answers
176 views

Using generics with jakarta commons collections Buffer

This code compiles fine in Java <= 1.4. Java 1.6 bitches and moans with the warning: "The method add(Object) belongs to the raw type Collection. References to generic type Collection should be …
0
votes
1answer
116 views

How do I set the format of toString methods with ToStringBuilder in commons-lang?

how do I configure the setting of the format for toString
0
votes
2answers
829 views

How to inject a Jakarta enums in a Spring application context ?

I have a class which constructor takes a Jakarta enums. I'm trying to find how I can easily inject it via an Spring XML aplicationContext. For example : The enum : public class MyEnum extends …