Questions tagged [apr]

The Apache Portable Runtime (APR) library provides a variety of services masking the differences between different operating systems with a uniform, platform-neutral interface.

The Apache Portable Runtime (APR) project's stated mission is:

The mission of the Apache Portable Runtime (APR) project is to create and maintain software libraries that provide a predictable and consistent interface to underlying platform-specific implementations. The primary goal is to provide an API to which software developers may code and be assured of predictable if not identical behaviour regardless of the platform on which their software is built, relieving them of the need to code special-case conditions to work around or take advantage of platform-specific deficiencies or features.

188 questions
0
votes
1 answer

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 work for me. I ended up using the -b 0.0.0.0 property…
Alyssa
  • 11
  • 2
0
votes
0 answers

Tomcat 8.0.33 Crashed due to APR in a Virtual Machine

We have application deployed on tomcat & its working good for most of the customer, but recently we installed it for two customers on a virtual machine & it looks like tomcat is crashing after few days. Machine Details: It is a Virtual Machine Both…
Atanu Pal
  • 135
  • 2
  • 11
0
votes
1 answer

Is APR(Apache Portable Runtime) hook efficient?

I want to implement function_A by using APR hook ,but I wonder if it is efficient. Does anyone use APR hook or know the working principle?And it will be good if any detail figures or data is shown. Thank you very much!
Sapete
  • 3
  • 3
0
votes
0 answers

tomcat automatically binds it to 0.0.0.0 from 127.0.0.1

I have made a port( example 1234) to be bound to the local host 127.0.0.1 .But when i restart tomcat automatically binds it to 0.0.0.0 . And my connector in server.xml contains 127.0.0.1 as address . My Tomcat Version Server version: Apache…
Rocky
  • 29
  • 1
  • 5
0
votes
1 answer

Undefined reference to installed APR C library

I downloaded and installed the APR and APR-util C libraries but I can't use them in a project I am doing I keep getting the following errors (I am on Linux Mint): undefined reference to `apr_pool_initialize' undefined reference to…
0
votes
0 answers

APR sendfile for Tomcat 8 does not send small files

I am trying to sendFiles by APR module of tomcat as described in https://tomcat.apache.org/tomcat-8.5-doc/aio.html It works really well for relatively large files(videos, large pdfs etc). However it is unable to send small files(30-40 KB). It does…
kundante
  • 2,100
  • 2
  • 16
  • 20
0
votes
0 answers

AuthzDBDQuery allow to use stored procedure call instead of select?

can AuthzDBDQuery call a stored procedure instead? I'm trying to get this working but i'm given an error AH01652: authz_dbd, in groups query for user@user.COM The error is coming from authz_dbd.c authz_dbd_group_query method because the call to…
0
votes
1 answer

How to make http request and send data another server in APACHE2.2

I am developing one apache plugin which will fetch some data from request header and need to send the data another server. I tried apr_socket_sento() and apr_socket_create() but none of them are working . Please tell me how to send or get data from…
0
votes
1 answer

Exact algorithm used by apr_crypto_passphrase

I need to write an apache module that encrypts data and I need to decrypt the data in java. So far I managed to encrypt the data on the apache side, however I cannot find out the key that is effectively used for encryption because its hidden away in…
Mene
  • 3,739
  • 21
  • 40
0
votes
1 answer

unixODBC works but Apache will not connect

I am trying to setup apache to connect to a Microsoft SQL server for authentication. This is not ideal but this legacy system has the credentials in MSSQL and that can not change. I have unixODBC setup and working **odbcinst.ini** [SQL Server Native…
ci_ms
  • 65
  • 1
  • 8
0
votes
1 answer

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 currently have my template configured so that my target…
0
votes
1 answer

Apr -a does not pull ALL macs

string macAddress = string.Empty; System.Diagnostics.Process pProcess = new System.Diagnostics.Process(); pProcess.StartInfo.FileName = "arp"; pProcess.StartInfo.Arguments = "-a " + IP; …
Jason
  • 811
  • 1
  • 12
  • 26
0
votes
1 answer

Configure APR connector in Spring Tool Suite/Eclipse

I want to configure APR connector in Spring Tool Suite's tomcat in linux(CentOS7). Using apr 1.5.2, tomcat-native 1.1.33, Spring Tool Suite 3.6.2, tomcat 7.0.57. Followed this tutorial and installed apr and tomcat-native libraries. Then based on…
mehere
  • 1,487
  • 5
  • 28
  • 50
0
votes
2 answers

How to install apache 2.4.12 from source onto Ubuntu 14.04

I tried to install Apache 2.4.12 from the installation page on the Apache website but to no avail. It said that I needed to install APR, APR-Util and Perl-Compatible Regular Expressions Library (PCRE). So I downloaded them and installed them, so I…
Alex Lowe
  • 783
  • 3
  • 20
  • 43
0
votes
1 answer

Enable JBoss Web Native (APR) on JBoss AS 6

I am trying to enable APR to improve performance of the AJP connector we use between apache and jboss. I have downloaded the correct .tar file from http://jbossweb.jboss.org/downloads/jboss-native-2-0-10 and extracted the files in accordance with…
DaveB
  • 2,953
  • 7
  • 38
  • 60