Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
214 views

How does JDK 6 regexp compare with org.apache.regexp?

I'm interested in benchmarks and functionality? Is there are any reason to use Jakarta regexp?
5
votes
10answers
407 views

What part of Apache Commons saves you the most time?

Community wiki'ed already, folks. What part of Apache Commons saves you the most time? I'm curious to get together a list of these to browse and see what I don't know about, or what I should be ...
3
votes
1answer
521 views

How do I do this using guava?

Is there a way of achieving the below using Guava? //anything better than using Files.append() in a loop? org.apache.commons.io.FileUtils.writeLines(File file, Collection lines, String lineEnding); ...
3
votes
1answer
2k views

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

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 street_advisor.jmx ...
2
votes
0answers
61 views

How to send HTTPClient post message with certain interval

I want to send http post message to the client (which i can do without any problem). But I want to send this message continously. Say for instance every 5 mintutes I want to send this message to ...
2
votes
1answer
909 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
2answers
222 views

Remote test using jmeter triggers Connection refused error

I followed this step for configuration http://jmeter.apache.org/usermanual/remote-test.html The 2 machines are on same subnet. They can ping each other Windows firewall is turned off When I ...
1
vote
1answer
79 views

Sun FtpClient or Jakarta FtpClient

Its been years since I've had to ftp a file from java so I'm a bit out of touch with the possibilities. The documentation I've found lists two possibilities for my use. The standard Sun ftp ...
1
vote
1answer
103 views

Jakarta POI: change page format for Excel worksheet

Is there a way to change the page size and layout while creating the Excel document using Jakarta POI? The default one is A4-vertical, while I need A6-horizontal (landscape). I don't think that this ...
1
vote
6answers
146 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 ...
1
vote
3answers
2k 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 ...
0
votes
1answer
59 views

Setting http timeout to jakarta HttpClient

I'm using the code below in WebHarvest configuration file to define timeout for http element in WebHarvest (Webharvest uses Jakarta HttpClient). But while I'm setting it to 20000 it takes about 40-50 ...
0
votes
0answers
51 views

How to using JK (isapi redirect) to redirect request using https protocol?

Currently, i'm using Jakarta Isapi Redirector to perform load balancing. I define my workers.properties content is below: # Define list of workers that will be used for mapping requests> # Node ...
0
votes
0answers
51 views

Integrating IIS7 and tomcat6 with jakarta: response is not proxied (just redirect to 8080)

I'm trying to configure Tomcat with IIS7 on windows 7. I would like to set IIS7 on port 80 (done) and tomcat (8080) and access to tomcat (proxy) and receive the response on the port 80. I've ...
0
votes
0answers
20 views

Return type of executable when using apache jk with IIS7

I've setup a tomcat 6 instance on my windows 2008 R2 webserver. I'm using Apache JK ISAPI DLL v 1.2.30 to redirect traffic from the IIS7.5 to the tomcat instance using the AJP connector. However, ...
0
votes
1answer
67 views

Is Jakarta's Commons-Pool object-safe?

I'm using Jakarta commons-pool-1.5.6.jar. I have 2 different pool of the same type of object (ex : Car). Is the a way to prevent returning object to the pool? Here's a sample: //CarPool extends ...
0
votes
3answers
413 views

How can I override the “Host” header in the request when using Apache commons HttpClient

I am using Jakarta Commons HttpClient 3.1 writing a load test tool that needs to target different servers and pretend like it targeted the correct virtual host in the HTTP server. For that I need to ...
0
votes
2answers
73 views

Why wont this simple Jakarta Regexp class run?

I am working on a project that requires me to understand the basics of the Apache Jakarta Regexp package for Java. I am somewhat unfamiliar with how to inlcude libraries in a java class. This is what ...
0
votes
1answer
268 views

Spring using Jakarta Tiles

I am trying to use Tiles in my application. I have a template jsp file which includes the tags <%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles" %> However the tiles tag ...
0
votes
2answers
253 views

Good alternate for Jakarta Taglibs?

We use Jakarta Taglibs to ouput some basic HTML form elements like selects. It appears this library has been retired.. are there any good alternates? Looking for something simple that will take a ...
0
votes
1answer
402 views

Using Windows Integrated Auth & Anonymous after jakarta redirect on IIS7

I have an application we bought that I need to integrate, and it uses jakarta connection to get to the application from IIS. So, the basic operation is: user goes to the url Gets redirected to ...
0
votes
1answer
99 views

Jakarta Regexp 1.5 Backreferences?

Why does this match: String str = "099.9 102.2" + (char) 0x0D; RE re = new RE("^([0-9]{3}.[0-9]) ([0-9]{3}.[0-9])\r$"); System.out.println(re.match(str)); But this does not: String str = ...
0
votes
1answer
414 views

Configuration reload with Jakarta Commons Daemon

Using Jakarta Commons Daemon is it possible to have my Java application perform an action (reload a configuration) when a SIGHUP signal is sent to the jsvc process? If not - what are my other options ...
0
votes
2answers
48 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
2answers
949 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
271 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