Tagged Questions
The Apache Portable Runtime (APR) library provides a variety of services masking the differences between different operating systems with a uniform, platform-neutral interface.
10
votes
3answers
2k views
GLib v APR pros and cons of each
I have a couple of hobby C programming projects that I would like to start. I am looking for an open source library that has a liberal license (I want credit, but pretty much anybody can use). The ...
3
votes
2answers
65 views
how to detect an invalid fd/handle
I have a server application which handles network clients with an async i/o. The client connections are accepted then added to a descriptor set which can be monitored with poll/epoll/select/etc. I'm ...
3
votes
3answers
2k views
What is the benefit (if any) of using APR with Tomcat?
Tomcat has an option to use APR for handling connections. What are the benefits of using that? Does anyone have firsthand experience with it?
2
votes
1answer
545 views
NIO Connector + gzip compression
I've been a tomcat user for a long time and am now looking to start playing with tomcat 7 with a view to upgrading
We use tomcat standalone using BIO serving many static resources...so this article ...
2
votes
1answer
202 views
Facebook fan page tab views
I am looking for a way to capture facebook fan page tab views metrics, where i can specify the date range
2
votes
2answers
256 views
Multithreading: apache portable runtime vs boost::thread?
Which way is better for a novice student who has never used boost?
When a new standard arrives, the answer will be obvious, but now I have doubts. Pro for boost is that it's much closer to future ...
1
vote
0answers
40 views
converting c method that uses bitwise to php
I'm trying to convert an APR (apache runtime) method to PHP, but I can't quite figure it out.
The method creates a string that is a directory path and file - so example output would be ...
1
vote
1answer
33 views
apr-utils apr_strmatch regex syntax
I want to port the following regex from python:
HASH_REGEX = re.compile("([a-fA-F0-9]{32})")
if HASH_REGEX.match(target):
print "We have match"
to C with apr-utils apr_strmatch function:
...
1
vote
3answers
15 views
format specifier for apr apr_time_h
gcc (Ubuntu/Linaro 4.6.1-9ubuntu3) 4.6.1
Apache protable runtime 1.4
c89 and compiling in -m32 mode
Code:
apr_time_t time_msecs = 0;
time_msecs = apr_time_as_msec(apr_time_now());
...
1
vote
0answers
31 views
Plausible to replace thread implementation in Log4cxx with custom threads like pthreads?
Log4cxx is a huge open source logging library. It makes extensive use of apache portable runtime and I was wondering if there is any easy way (not requiring full rewriting) for getting rid of apache ...
1
vote
0answers
79 views
Why Tomcat7 always complain about older version APR 1.1.20?
I have installed Tomcat 7.0.22 on Windows, put in lib tcnative_1.dll. Its version 1.2.22.
But when I start tomcat - always this complain.
Why?
Thanks.
1
vote
2answers
255 views
Excessive synchronizing of memory mapped file in Apache module
I am currently working on an Apache module that uses a large mmap file to share data between processes. This is created on start-up and removed when the server shuts down (May choose to keep it at a ...
1
vote
1answer
210 views
Append array using apr_array_push in D
I am writing a program in the D that uses svn and I came across something I can not figure out how to convert into D syntax. I took a stab at it but it segfaults.
Example of what I am trying to ...
1
vote
1answer
182 views
How to compile a APR test script
Its a long time since I've used C but now I'm trying to compile a short script that gets server-stats from the Apache-Portable-Runtime (APR).
Header files located at /usr/include/apr-1/apr*.h and ...
0
votes
0answers
49 views
How to compile Apache APR for MIPS
I’ve got a working tool chain on a linux system, since our project compiles correctly. We’d now like to add log4cxx to the MIPS version. Using the somewhat limited apr documentation, when running
...
0
votes
0answers
9 views
Where does APR write its error log?
I'm using APR 1.4.5 with Tomcat 7.0.23 on Linux.
I know that Tomcat writes its log files in $CATALINA_HOME/logs. Does APR have its own log file? If so, where is it? I don't see any log files in ...
0
votes
0answers
152 views
Building and configuring apr-util and httpd to use apr-iconv on Linux
I'm a glutton for punishment, and to prove it, I got myself a server and tried to build the entire LAMP stack myself. Then I ran into a problem where during a configure/make/install of httpd, I found ...
0
votes
1answer
139 views
configure: error: APR-util version 1.2.0 or later is required
I find the following error when I installed httpd-2.2.21:
checking for APR-util version 1.2.0 or later... no
configure: error: APR-util version 1.2.0 or later is required
I've installed apr-1.4.5, ...
0
votes
1answer
232 views
How can I get client certificate authentication working in JBoss 5.1.0.GA when I'm using APR, and not all web deployments use CLIENT-CERT auth?
Note: I will be answering my own question... just wanted to add this tidbit to the collective wisdom of The Internets.
I've successfully configured certificate authentication on my JBoss 5.1.0.GA ...
0
votes
0answers
10 views
How could I use apr_thread_cond_t to make a scheduling component?
I would like to try to create a non-OS dependent scheduling component for my Apache module that would at scheduled execution times import or export to my master database.
I was reading from another ...
0
votes
0answers
10 views
How should I go about DB Conn persisting in Apache when mod_dbd doesnt support my driver?
I am working with the ODBTP interface to SQL Server from a Linux Apache 2.x host. mod_dbm does not support this and I require being able to move the code to any host that supports Apache.
A note on ...
0
votes
0answers
53 views
How to test that Tomcat with APR and OpenSSL is caching SSL sessions?
We have an application running on Tomcat 6.0.32 and using JSSE (Java 1.6.0_26) for cryptographic communication (HTTPS). Recently, we've being testing with the APR connector and OpenSSL.
How can we ...
0
votes
2answers
71 views
Eclipse Tomcat apr
I use Tomcat 6.0.32 as standalone - APR load without problems.
But when install the same in Eclipse and run - apr not found.
What can be the reason?
Thanks.
0
votes
0answers
24 views
apr_get_os_error returns 720005
I'm trying to write data to a file using APR (Apache Portable Runtime), I open fine with the APR_FOPEN_READ and APR_FOPEN_WRITE flags. However, when I try to write to the file (using apr_file_write, I ...
0
votes
0answers
88 views
Can maxKeepAliveRequests be used with the APR connector in Tomcat
I'm using Tomcat 6 and trying to set the maxKeepAliveRequests config setting for my APR connector. Looking at the source code, I can see that this value makes it into the Http11AprProcessorClass but ...
0
votes
1answer
148 views
How can I create a file using apr_file_open()
I am making the following call to the Apache Portable Runtime library (version 1.4):
result = apr_file_open(
&file, // new file handle
pathname, // file name
...
0
votes
1answer
97 views
How to sleep an APR thread?
I am using APR library to create portable multi-threading program in C++. Problem is I need to sleep a thread when it is not needed but there is no function mentioned in manual to do so.
Do you now a ...
0
votes
0answers
37 views
apr_file_copy: strange behavior
I'm using Apache APR for managing files.
The problem is that apr_file_copy function freezes when non-full paths are specified as arguments.
My code worked fine for a long time but the hanging ...
0
votes
1answer
158 views
Flash SWF On Solaris Won't Load When Also Loading Apache APR Library in JBoss
UPDATE + SOLUTION ===============================
Sorry to be posting the solution here instead of in a comment, but something about my work's filtering doesn't allow the comment functionality to ...
0
votes
1answer
302 views
xcode template with run script build phase requires root
I'm trying to configure a custom xcode template for building Apache 2.2 modules in xcode. Everything seems to be working okay so far, except the most important bit: the custom build settings.
I ...
0
votes
2answers
453 views
Tomcat SSL: TLS vs ALL
What is the best value for SSLProtocol parameter in Tomcat APR config?
Docs says: "Protocol which may be used for communicating with clients. The default is "all", with other acceptable values being ...
0
votes
1answer
366 views
0
votes
2answers
295 views
What's the difference between APR (Apache Portable Runtime) 1.3 and 0.9?
I'm just getting started with APR and it seems that there are two supported versions developed side-by-side: http://apr.apache.org/
The docs don't explain the difference between 1.3.x and 0.9.x... ...