Re: Apache Tomcat 9.0.0-M4 and http/2 on Mac OS X 10.11.4

2016-05-12 Thread Tobias Soloschenko
Hi, short update: I got HTTP/2 with Apache Wicket running on Jetty, now. Sadly I couldn't solve the issues with Tomcat. :-( kind regards Tobias > Am 05.04.2016 um 05:00 schrieb Christopher Schultz > : > > Tobias, > >> On 4/4/16 4:49 AM, Tobias Soloschenko

Re: Apache Tomcat 9.0.0-M4 and http/2 on Mac OS X 10.11.4

2016-04-07 Thread Tobias Soloschenko
Any other hints? kind regards Tobias > Am 05.04.2016 um 05:00 schrieb Christopher Schultz > : > > Tobias, > >> On 4/4/16 4:49 AM, Tobias Soloschenko wrote: >> I just figured out that this issue might depend on the file names of APR >> 1.5.2 - if I create links

Re: Apache Tomcat 9.0.0-M4 and http/2 on Mac OS X 10.11.4

2016-04-05 Thread Tobias Soloschenko
I missed to answer some of the other questions: 1. I start tomcat with the startup.sh 2. The files in the ../1.5.2/libexec/lib can be derived from the ln -s commands (see below) 3. TCNATIVE_PRIV_INCLUDES is default I didn't changed here anything. 4. I posted a step by step guide - I think if I

Re: Apache Tomcat 9.0.0-M4 and http/2 on Mac OS X 10.11.4

2016-04-05 Thread Tobias Soloschenko
Hi > Am 05.04.2016 um 05:00 schrieb Christopher Schultz > : > > Tobias, > >> On 4/4/16 4:49 AM, Tobias Soloschenko wrote: >> I just figured out that this issue might depend on the file names of APR >> 1.5.2 - if I create links in the lib folder that reflects the

Re: Apache Tomcat 9.0.0-M4 and http/2 on Mac OS X 10.11.4

2016-04-04 Thread Christopher Schultz
Tobias, On 4/4/16 4:49 AM, Tobias Soloschenko wrote: > I just figured out that this issue might depend on the file names of APR > 1.5.2 - if I create links in the lib folder that reflects the names of > 1.4.8 - tomcat throws an exception that the version of APR can not be > resolved: > > ln -s

Re: Apache Tomcat 9.0.0-M4 and http/2 on Mac OS X 10.11.4

2016-04-04 Thread Tobias Soloschenko
Hi, I just figured out that this issue might depend on the file names of APR 1.5.2 - if I create links in the lib folder that reflects the names of 1.4.8 - tomcat throws an exception that the version of APR can not be resolved: ln -s libapr-1.0.dylib libtcnative-1.0.dylib ln -s libapr-1.a

Re: Apache Tomcat 9.0.0-M4 and http/2 on Mac OS X 10.11.4

2016-04-04 Thread Tobias Soloschenko
One thing I made wrong was "export JAVA_OPTS=-Djava.library.path=/usr/local/apr/lib" which is 1.4.8 the path to the new version installed with brew is "export JAVA_OPTS=-Djava.library.path=/usr/local/Cellar/apr/1.5.2/libexec/lib" but Tomcat can not find it at this location. I also tried to

Re: Apache Tomcat 9.0.0-M4 and http/2 on Mac OS X 10.11.4

2016-04-03 Thread Tobias Soloschenko
I am going to contribute a step by step guide to the documentation (only for developers) when I got it working for me. kind regards Tobias > Am 03.04.2016 um 22:09 schrieb Terence M. Bandoian : > >> On 4/2/2016 10:29 PM, Tobias Soloschenko wrote: >> Hi, >> >> I am trying

Apache Tomcat 9.0.0-M4 and http/2 on Mac OS X 10.11.4

2016-04-03 Thread Terence M. Bandoian
On 4/2/2016 10:29 PM, Tobias Soloschenko wrote: Hi, I am trying to get http/2 working on Mac OS X 10.11.4 - these are the steps I used: 1. Install Brew: http://brew.sh/ 2. Download Apache Tomcat 9 https://tomcat.apache.org/download-90.cgi 3. Download Xcode command line tools by opening the

Re: Apache Tomcat 9.0.0-M4 and http/2 on Mac OS X 10.11.4

2016-04-03 Thread Tobias Soloschenko
Ok I run it again - here are the results: ./configure --with-ssl=/usr/local/Cellar/openssl/1.0.2g --prefix=/Applications/apache-tomcat-9.0.0.M4 --with-apr=/usr/local/Cellar/apr/1.5.2 && make && make install checking build system type... x86_64-apple-darwin15.4.0 checking host system type...

Re: Apache Tomcat 9.0.0-M4 and http/2 on Mac OS X 10.11.4

2016-04-03 Thread Tobias Soloschenko
Thanks - I am going to try it out. kind regards Tobias > Am 03.04.2016 um 12:17 schrieb Mark Thomas : > >> On 3 April 2016 04:29:40 BST, Tobias Soloschenko >> wrote: >> Hi, >> >> I am trying to get http/2 working on Mac OS X 10.11.4 -

Re: Apache Tomcat 9.0.0-M4 and http/2 on Mac OS X 10.11.4

2016-04-03 Thread Mark Thomas
On 3 April 2016 04:29:40 BST, Tobias Soloschenko wrote: >Hi, > >I am trying to get http/2 working on Mac OS X 10.11.4 - these are the >steps I used: > >1. Install Brew: http://brew.sh/ > >2. Download Apache Tomcat 9 https://tomcat.apache.org/download-90.cgi >

Apache Tomcat 9.0.0-M4 and http/2 on Mac OS X 10.11.4

2016-04-02 Thread Tobias Soloschenko
Hi, I am trying to get http/2 working on Mac OS X 10.11.4 - these are the steps I used: 1. Install Brew: http://brew.sh/ 2. Download Apache Tomcat 9 https://tomcat.apache.org/download-90.cgi 3. Download Xcode command line tools by opening the terminal and execute “xcode-select —install” 4.