You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(6) |
Oct
(6) |
Nov
(8) |
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(19) |
Feb
(15) |
Mar
(10) |
Apr
(8) |
May
(7) |
Jun
(9) |
Jul
(13) |
Aug
(31) |
Sep
(111) |
Oct
(52) |
Nov
(72) |
Dec
(42) |
2006 |
Jan
(21) |
Feb
(32) |
Mar
(33) |
Apr
(24) |
May
(15) |
Jun
(40) |
Jul
(32) |
Aug
(19) |
Sep
(38) |
Oct
(37) |
Nov
(63) |
Dec
(37) |
2007 |
Jan
(18) |
Feb
(39) |
Mar
(69) |
Apr
(49) |
May
(71) |
Jun
(59) |
Jul
(71) |
Aug
(85) |
Sep
(46) |
Oct
(14) |
Nov
(25) |
Dec
(56) |
2008 |
Jan
(24) |
Feb
(77) |
Mar
(104) |
Apr
(44) |
May
(41) |
Jun
(11) |
Jul
(31) |
Aug
(59) |
Sep
(44) |
Oct
(86) |
Nov
(66) |
Dec
(93) |
2009 |
Jan
(88) |
Feb
(41) |
Mar
(49) |
Apr
(135) |
May
(22) |
Jun
(31) |
Jul
(60) |
Aug
(71) |
Sep
(76) |
Oct
(18) |
Nov
(52) |
Dec
(20) |
2010 |
Jan
(8) |
Feb
(50) |
Mar
(35) |
Apr
(48) |
May
(46) |
Jun
(84) |
Jul
(38) |
Aug
(61) |
Sep
(51) |
Oct
(31) |
Nov
(17) |
Dec
(18) |
2011 |
Jan
(51) |
Feb
(14) |
Mar
(17) |
Apr
(23) |
May
(15) |
Jun
(11) |
Jul
(5) |
Aug
(5) |
Sep
(15) |
Oct
(8) |
Nov
(5) |
Dec
(25) |
2012 |
Jan
(2) |
Feb
(4) |
Mar
(6) |
Apr
(9) |
May
(27) |
Jun
(32) |
Jul
(36) |
Aug
(10) |
Sep
(16) |
Oct
(3) |
Nov
(13) |
Dec
(7) |
2013 |
Jan
(1) |
Feb
(4) |
Mar
|
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(4) |
Oct
(2) |
Nov
(1) |
Dec
|
2014 |
Jan
|
Feb
|
Mar
(2) |
Apr
(1) |
May
(2) |
Jun
(9) |
Jul
(5) |
Aug
(2) |
Sep
(4) |
Oct
|
Nov
|
Dec
|
2015 |
Jan
(3) |
Feb
(2) |
Mar
(4) |
Apr
(3) |
May
(1) |
Jun
(2) |
Jul
|
Aug
(2) |
Sep
(5) |
Oct
(1) |
Nov
|
Dec
|
2016 |
Jan
|
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(5) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
2017 |
Jan
(6) |
Feb
|
Mar
|
Apr
(10) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(1) |
Dec
|
2018 |
Jan
(2) |
Feb
(5) |
Mar
|
Apr
|
May
(1) |
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2021 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2023 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
(1) |
14
|
15
|
16
|
17
|
18
|
19
|
20
(1) |
21
(2) |
22
(1) |
23
(2) |
24
|
25
|
26
|
27
|
28
|
29
(6) |
30
|
|
From: <php...@li...> - 2012-11-29 19:16:54
|
No problem. Maybe this will help some people out: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE urlrewrite PUBLIC "-//tuckey.org//DTD UrlRewrite 3.2//EN" "http://tuckey.org/res/dtds/urlrewrite3.2.dtd"> <urlrewrite> <!-- Rule applies to the live site only. Redirect http[s]://yourhostname.com to http[s]://www.yourhostname.com --> <rule> <name>Canonical Hostname (Live HTTP)</name> <condition type="scheme" operator="equal">http</condition> <condition name="host" operator="equal">^yourhostname.com</condition> <from>^/(.*)</from> <to type="redirect" last="true">http://www.yourhostname.com/$1</to> </rule> <rule> <name>Canonical Hostname (Live HTTPS)</name> <condition type="scheme" operator="equal">https</condition> <condition name="host" operator="equal">^yourhostname.com</condition> <from>^/(.*)</from> <to type="redirect" last="true">https://www.yourhostname.com/$1</to> </rule> <rule> <from>^/(.*)$</from> <to>/webroot/$1</to> </rule> <!-- Requests that come in for /webroot/* resources get an extra /webroot added to them. This rule removes it. Can't think of a better solution at the moment. --> <rule> <from>^/webroot/webroot/(.*)$</from> <to>/webroot/$1</to> </rule> <rule> <from>^/webroot/images/(.*)$</from> <to last="true">/webroot/images/$1</to> </rule> <rule> <from>^/webroot/img/(.*)$</from> <to last="true">/webroot/img/$1</to> </rule> <rule> <from>^/webroot/css/(.*)$</from> <to last="true">/webroot/css/$1</to> </rule> <rule> <from>^/webroot/scripts/(.*)$</from> <to last="true">/webroot/scripts/$1</to> </rule> <rule> <from>^/webroot/js/(.*)$</from> <to last="true">/webroot/js/$1</to> </rule> <rule> <from>^/webroot/favicon.ico$</from> <to last="true">/webroot/favicon.ico</to> </rule> <rule> <from>^/webroot/index.php$</from> <to last="true">/webroot/index.php</to> </rule> <rule> <from>^/webroot/(.*)$</from> <to last="true">/index.php?url=$1</to> </rule> </urlrewrite> On 11/29/2012 2:00 PM, php...@li... wrote: > I hate to keep asking but I have played around with UrlRewriteFilter and it looks like it is probably using a rules file called "urlrewrite.xml" that would be in the same folder as web.xml. If that is there could I get a copy? If you have security concerns with it then you could send it to my personal email address and I agree not to re-distribute. If not, I understand. > > Stuart > > On Nov 29, 2012, at 1:21 PM, <php...@li...> wrote: > >> Sorry, but I am not able to do that because they no longer work here. >> >> Take a look at the web.xml file and you can see that we do use >> UrlRewriteFilter (some bits removed for security purposes): >> >> <?xml version="1.0" encoding="UTF-8"?> >> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application >> 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> >> >> <web-app> >> <filter> >> <filter-name>PhpCGIFilter</filter-name> >> <filter-class>php.java.servlet.PhpCGIFilter</filter-class> >> </filter> >> <filter> >> <filter-name>UrlRewriteFilter</filter-name> >> <filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</filter-class> >> </filter> >> >> <filter-mapping> >> <filter-name>UrlRewriteFilter</filter-name> >> <url-pattern>/*</url-pattern> >> </filter-mapping> >> <filter-mapping> >> <filter-name>PhpCGIFilter</filter-name> >> <url-pattern>/*</url-pattern> >> </filter-mapping> >> >> <servlet> >> <servlet-name>PhpCGIServlet</servlet-name> >> <servlet-class>php.java.servlet.fastcgi.FastCGIServlet</servlet-class> >> <load-on-startup>0</load-on-startup> >> </servlet> >> <servlet-mapping> >> <servlet-name>PhpCGIServlet</servlet-name> >> <url-pattern>*.php</url-pattern> >> </servlet-mapping> >> >> <welcome-file-list> >> <welcome-file>index.php</welcome-file> >> </welcome-file-list> >> </web-app> >> >> >> >> On 11/29/2012 12:48 PM, php...@li... wrote: >>> Could you contact, or send me the contact info for the person(s) that did set that up? >>> >>> Stuart >>> >>> On Nov 29, 2012, at 11:06 AM, php...@li... wrote: >>> >>>> We use cakephp and the php-java bridge. You have to reproduce cake's >>>> .htaccess rewrite rules in tomcat. I didn't set that up, but that's how >>>> it works. >>>> >>>> On 11/29/2012 8:50 AM, php...@li... wrote: >>>>> Has anyone played with getting the CakePHP framework to work in a pjb servlet? >>>>> It uses .htaccess files and mod_rewrite (Apache) but this can be disabled. >>>>> >>>>> Maybe you could use UrlRewriteFilter? (http://tuckey.org/urlrewrite/) >>>>> >>>>> Any thoughts/comments appreciated. >>>>> >>>>> Stuart Chalk, Ph.D. >>>>> Associate Professor of Chemistry >>>>> Department of Chemistry, Building 50, Room 3514, >>>>> University of North Florida >>>>> 1 UNF Drive, Jacksonville, FL 32224 USA >>>>> P: 904-620-1938 >>>>> F: 904-620-3535 >>>>> E: sc...@un... >>>>> W: http://www.unf.edu/coas/chemistry/ >>>>> >>>>> >>>>> ------------------------------------------------------------------------------ >>>>> Keep yourself connected to Go Parallel: >>>>> VERIFY Test and improve your parallel project with help from experts >>>>> and peers. http://goparallel.sourceforge.net >>>>> _______________________________________________ >>>>> php-java-bridge-users mailing list >>>>> php...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users >>>> -- >>>> >>>> >>>> David Harris >>>> Bridge Interactive Group >>>> email: dh...@bi... >>>> cell: 404-831-7015 >>>> office: 888-901-0150 >>>> >>>> Bridge Software Products: >>>> www.retsiq.com <http://www.retsiq.com> >>>> www.realvaluator.com <http://www.realvaluator.com> >>>> >>>> ------------------------------------------------------------------------------ >>>> Keep yourself connected to Go Parallel: >>>> VERIFY Test and improve your parallel project with help from experts >>>> and peers. http://goparallel.sourceforge.net >>>> _______________________________________________ >>>> php-java-bridge-users mailing list >>>> php...@li... >>>> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users >>> ------------------------------------------------------------------------------ >>> Keep yourself connected to Go Parallel: >>> VERIFY Test and improve your parallel project with help from experts >>> and peers. http://goparallel.sourceforge.net >>> _______________________________________________ >>> php-java-bridge-users mailing list >>> php...@li... >>> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users >> -- >> >> >> David Harris >> Bridge Interactive Group >> email: dh...@bi... >> cell: 404-831-7015 >> office: 888-901-0150 >> >> Bridge Software Products: >> www.retsiq.com <http://www.retsiq.com> >> www.realvaluator.com <http://www.realvaluator.com> >> >> ------------------------------------------------------------------------------ >> Keep yourself connected to Go Parallel: >> VERIFY Test and improve your parallel project with help from experts >> and peers. http://goparallel.sourceforge.net >> _______________________________________________ >> php-java-bridge-users mailing list >> php...@li... >> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users > > ------------------------------------------------------------------------------ > Keep yourself connected to Go Parallel: > VERIFY Test and improve your parallel project with help from experts > and peers. http://goparallel.sourceforge.net > _______________________________________________ > php-java-bridge-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users -- David Harris Bridge Interactive Group email: dh...@bi... cell: 404-831-7015 office: 888-901-0150 Bridge Software Products: www.retsiq.com <http://www.retsiq.com> www.realvaluator.com <http://www.realvaluator.com> |
From: <php...@li...> - 2012-11-29 19:00:24
|
I hate to keep asking but I have played around with UrlRewriteFilter and it looks like it is probably using a rules file called "urlrewrite.xml" that would be in the same folder as web.xml. If that is there could I get a copy? If you have security concerns with it then you could send it to my personal email address and I agree not to re-distribute. If not, I understand. Stuart On Nov 29, 2012, at 1:21 PM, <php...@li...> wrote: > Sorry, but I am not able to do that because they no longer work here. > > Take a look at the web.xml file and you can see that we do use > UrlRewriteFilter (some bits removed for security purposes): > > <?xml version="1.0" encoding="UTF-8"?> > <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application > 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> > > <web-app> > <filter> > <filter-name>PhpCGIFilter</filter-name> > <filter-class>php.java.servlet.PhpCGIFilter</filter-class> > </filter> > <filter> > <filter-name>UrlRewriteFilter</filter-name> > <filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</filter-class> > </filter> > > <filter-mapping> > <filter-name>UrlRewriteFilter</filter-name> > <url-pattern>/*</url-pattern> > </filter-mapping> > <filter-mapping> > <filter-name>PhpCGIFilter</filter-name> > <url-pattern>/*</url-pattern> > </filter-mapping> > > <servlet> > <servlet-name>PhpCGIServlet</servlet-name> > <servlet-class>php.java.servlet.fastcgi.FastCGIServlet</servlet-class> > <load-on-startup>0</load-on-startup> > </servlet> > <servlet-mapping> > <servlet-name>PhpCGIServlet</servlet-name> > <url-pattern>*.php</url-pattern> > </servlet-mapping> > > <welcome-file-list> > <welcome-file>index.php</welcome-file> > </welcome-file-list> > </web-app> > > > > On 11/29/2012 12:48 PM, php...@li... wrote: >> Could you contact, or send me the contact info for the person(s) that did set that up? >> >> Stuart >> >> On Nov 29, 2012, at 11:06 AM, php...@li... wrote: >> >>> We use cakephp and the php-java bridge. You have to reproduce cake's >>> .htaccess rewrite rules in tomcat. I didn't set that up, but that's how >>> it works. >>> >>> On 11/29/2012 8:50 AM, php...@li... wrote: >>>> Has anyone played with getting the CakePHP framework to work in a pjb servlet? >>>> It uses .htaccess files and mod_rewrite (Apache) but this can be disabled. >>>> >>>> Maybe you could use UrlRewriteFilter? (http://tuckey.org/urlrewrite/) >>>> >>>> Any thoughts/comments appreciated. >>>> >>>> Stuart Chalk, Ph.D. >>>> Associate Professor of Chemistry >>>> Department of Chemistry, Building 50, Room 3514, >>>> University of North Florida >>>> 1 UNF Drive, Jacksonville, FL 32224 USA >>>> P: 904-620-1938 >>>> F: 904-620-3535 >>>> E: sc...@un... >>>> W: http://www.unf.edu/coas/chemistry/ >>>> >>>> >>>> ------------------------------------------------------------------------------ >>>> Keep yourself connected to Go Parallel: >>>> VERIFY Test and improve your parallel project with help from experts >>>> and peers. http://goparallel.sourceforge.net >>>> _______________________________________________ >>>> php-java-bridge-users mailing list >>>> php...@li... >>>> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users >>> -- >>> >>> >>> David Harris >>> Bridge Interactive Group >>> email: dh...@bi... >>> cell: 404-831-7015 >>> office: 888-901-0150 >>> >>> Bridge Software Products: >>> www.retsiq.com <http://www.retsiq.com> >>> www.realvaluator.com <http://www.realvaluator.com> >>> >>> ------------------------------------------------------------------------------ >>> Keep yourself connected to Go Parallel: >>> VERIFY Test and improve your parallel project with help from experts >>> and peers. http://goparallel.sourceforge.net >>> _______________________________________________ >>> php-java-bridge-users mailing list >>> php...@li... >>> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users >> >> ------------------------------------------------------------------------------ >> Keep yourself connected to Go Parallel: >> VERIFY Test and improve your parallel project with help from experts >> and peers. http://goparallel.sourceforge.net >> _______________________________________________ >> php-java-bridge-users mailing list >> php...@li... >> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users > > -- > > > David Harris > Bridge Interactive Group > email: dh...@bi... > cell: 404-831-7015 > office: 888-901-0150 > > Bridge Software Products: > www.retsiq.com <http://www.retsiq.com> > www.realvaluator.com <http://www.realvaluator.com> > > ------------------------------------------------------------------------------ > Keep yourself connected to Go Parallel: > VERIFY Test and improve your parallel project with help from experts > and peers. http://goparallel.sourceforge.net > _______________________________________________ > php-java-bridge-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users |
From: <php...@li...> - 2012-11-29 18:26:40
|
Sorry, but I am not able to do that because they no longer work here. Take a look at the web.xml file and you can see that we do use UrlRewriteFilter (some bits removed for security purposes): <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <filter> <filter-name>PhpCGIFilter</filter-name> <filter-class>php.java.servlet.PhpCGIFilter</filter-class> </filter> <filter> <filter-name>UrlRewriteFilter</filter-name> <filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</filter-class> </filter> <filter-mapping> <filter-name>UrlRewriteFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <filter-mapping> <filter-name>PhpCGIFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <servlet> <servlet-name>PhpCGIServlet</servlet-name> <servlet-class>php.java.servlet.fastcgi.FastCGIServlet</servlet-class> <load-on-startup>0</load-on-startup> </servlet> <servlet-mapping> <servlet-name>PhpCGIServlet</servlet-name> <url-pattern>*.php</url-pattern> </servlet-mapping> <welcome-file-list> <welcome-file>index.php</welcome-file> </welcome-file-list> </web-app> On 11/29/2012 12:48 PM, php...@li... wrote: > Could you contact, or send me the contact info for the person(s) that did set that up? > > Stuart > > On Nov 29, 2012, at 11:06 AM, php...@li... wrote: > >> We use cakephp and the php-java bridge. You have to reproduce cake's >> .htaccess rewrite rules in tomcat. I didn't set that up, but that's how >> it works. >> >> On 11/29/2012 8:50 AM, php...@li... wrote: >>> Has anyone played with getting the CakePHP framework to work in a pjb servlet? >>> It uses .htaccess files and mod_rewrite (Apache) but this can be disabled. >>> >>> Maybe you could use UrlRewriteFilter? (http://tuckey.org/urlrewrite/) >>> >>> Any thoughts/comments appreciated. >>> >>> Stuart Chalk, Ph.D. >>> Associate Professor of Chemistry >>> Department of Chemistry, Building 50, Room 3514, >>> University of North Florida >>> 1 UNF Drive, Jacksonville, FL 32224 USA >>> P: 904-620-1938 >>> F: 904-620-3535 >>> E: sc...@un... >>> W: http://www.unf.edu/coas/chemistry/ >>> >>> >>> ------------------------------------------------------------------------------ >>> Keep yourself connected to Go Parallel: >>> VERIFY Test and improve your parallel project with help from experts >>> and peers. http://goparallel.sourceforge.net >>> _______________________________________________ >>> php-java-bridge-users mailing list >>> php...@li... >>> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users >> -- >> >> >> David Harris >> Bridge Interactive Group >> email: dh...@bi... >> cell: 404-831-7015 >> office: 888-901-0150 >> >> Bridge Software Products: >> www.retsiq.com <http://www.retsiq.com> >> www.realvaluator.com <http://www.realvaluator.com> >> >> ------------------------------------------------------------------------------ >> Keep yourself connected to Go Parallel: >> VERIFY Test and improve your parallel project with help from experts >> and peers. http://goparallel.sourceforge.net >> _______________________________________________ >> php-java-bridge-users mailing list >> php...@li... >> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users > > ------------------------------------------------------------------------------ > Keep yourself connected to Go Parallel: > VERIFY Test and improve your parallel project with help from experts > and peers. http://goparallel.sourceforge.net > _______________________________________________ > php-java-bridge-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users -- David Harris Bridge Interactive Group email: dh...@bi... cell: 404-831-7015 office: 888-901-0150 Bridge Software Products: www.retsiq.com <http://www.retsiq.com> www.realvaluator.com <http://www.realvaluator.com> |
From: <php...@li...> - 2012-11-29 17:48:48
|
Could you contact, or send me the contact info for the person(s) that did set that up? Stuart On Nov 29, 2012, at 11:06 AM, php...@li... wrote: > We use cakephp and the php-java bridge. You have to reproduce cake's > .htaccess rewrite rules in tomcat. I didn't set that up, but that's how > it works. > > On 11/29/2012 8:50 AM, php...@li... wrote: >> Has anyone played with getting the CakePHP framework to work in a pjb servlet? >> It uses .htaccess files and mod_rewrite (Apache) but this can be disabled. >> >> Maybe you could use UrlRewriteFilter? (http://tuckey.org/urlrewrite/) >> >> Any thoughts/comments appreciated. >> >> Stuart Chalk, Ph.D. >> Associate Professor of Chemistry >> Department of Chemistry, Building 50, Room 3514, >> University of North Florida >> 1 UNF Drive, Jacksonville, FL 32224 USA >> P: 904-620-1938 >> F: 904-620-3535 >> E: sc...@un... >> W: http://www.unf.edu/coas/chemistry/ >> >> >> ------------------------------------------------------------------------------ >> Keep yourself connected to Go Parallel: >> VERIFY Test and improve your parallel project with help from experts >> and peers. http://goparallel.sourceforge.net >> _______________________________________________ >> php-java-bridge-users mailing list >> php...@li... >> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users > > -- > > > David Harris > Bridge Interactive Group > email: dh...@bi... > cell: 404-831-7015 > office: 888-901-0150 > > Bridge Software Products: > www.retsiq.com <http://www.retsiq.com> > www.realvaluator.com <http://www.realvaluator.com> > > ------------------------------------------------------------------------------ > Keep yourself connected to Go Parallel: > VERIFY Test and improve your parallel project with help from experts > and peers. http://goparallel.sourceforge.net > _______________________________________________ > php-java-bridge-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users |
From: <php...@li...> - 2012-11-29 16:29:23
|
We use cakephp and the php-java bridge. You have to reproduce cake's .htaccess rewrite rules in tomcat. I didn't set that up, but that's how it works. On 11/29/2012 8:50 AM, php...@li... wrote: > Has anyone played with getting the CakePHP framework to work in a pjb servlet? > It uses .htaccess files and mod_rewrite (Apache) but this can be disabled. > > Maybe you could use UrlRewriteFilter? (http://tuckey.org/urlrewrite/) > > Any thoughts/comments appreciated. > > Stuart Chalk, Ph.D. > Associate Professor of Chemistry > Department of Chemistry, Building 50, Room 3514, > University of North Florida > 1 UNF Drive, Jacksonville, FL 32224 USA > P: 904-620-1938 > F: 904-620-3535 > E: sc...@un... > W: http://www.unf.edu/coas/chemistry/ > > > ------------------------------------------------------------------------------ > Keep yourself connected to Go Parallel: > VERIFY Test and improve your parallel project with help from experts > and peers. http://goparallel.sourceforge.net > _______________________________________________ > php-java-bridge-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users -- David Harris Bridge Interactive Group email: dh...@bi... cell: 404-831-7015 office: 888-901-0150 Bridge Software Products: www.retsiq.com <http://www.retsiq.com> www.realvaluator.com <http://www.realvaluator.com> |
From: <php...@li...> - 2012-11-29 14:24:22
|
Has anyone played with getting the CakePHP framework to work in a pjb servlet? It uses .htaccess files and mod_rewrite (Apache) but this can be disabled. Maybe you could use UrlRewriteFilter? (http://tuckey.org/urlrewrite/) Any thoughts/comments appreciated. Stuart Chalk, Ph.D. Associate Professor of Chemistry Department of Chemistry, Building 50, Room 3514, University of North Florida 1 UNF Drive, Jacksonville, FL 32224 USA P: 904-620-1938 F: 904-620-3535 E: sc...@un... W: http://www.unf.edu/coas/chemistry/ |
From: <php...@li...> - 2012-11-23 12:55:24
|
Hello. I've read all related topics, i tried everything but and push bridge to load PHP extensions. My dirs tree loos like this: | index.php | index2.php | ----java | Java.inc | JavaProxy.php | ----WEB-INF | web.xml | weblogic.xml | ----cgi | ----x86-windows | | launcher.exe | | php-cgi.exe | | php.ini | | php5.dll | | | ----conf.d | | mysql.ini | | | ----ext | php_mysql.dll | ----lib | JavaBridge.jar | php-script.jar | php-servlet.jar | ----pear and mysql.ini file looks like this: ;; -*- mode: Scheme; tab-width:4 -*- ;; Example extension.ini file: mysql.ini. ;; Copy the correct version (see phpinfo()) of the PHP extension "php_mysql.dll" to the .\..\ext directory and uncomment the following line extension = php_mysql.dll What should i check or do to make it works? I'm using Tomcat 7. Thanks in advance. |
From: <php...@li...> - 2012-11-23 08:27:01
|
Hi, I had a small problem setting up the php-java-bridge for Tomcat 7 on Ubuntu 12.04. I configured the bridge in the system wide web.xml. When testing the bridge I got this exception: javax.servlet.ServletException: php.java.bridge.http.FCGIConnectException: Could not connect to server php.java.servlet.fastcgi.FastCGIServlet.init(FastCGIServlet.java:133) org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98) org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:927) org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407) org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:987) org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:579) org.apache.tomcat.util.net.AprEndpoint$SocketWithOptionsProcessor.run(AprEndpoint.java:1763) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) java.lang.Thread.run(Thread.java:722) root cause php.java.bridge.http.FCGIConnectException: Could not connect to server php.java.bridge.http.SocketChannelFactory.test(SocketChannelFactory.java:60) php.java.servlet.fastcgi.FastCGIServlet.init(FastCGIServlet.java:131) org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98) org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:927) org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407) org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:987) org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:579) org.apache.tomcat.util.net.AprEndpoint$SocketWithOptionsProcessor.run(AprEndpoint.java:1763) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) java.lang.Thread.run(Thread.java:722) root cause java.net.ConnectException: Connection refused java.net.PlainSocketImpl.socketConnect(Native Method) java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:339) java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:200) java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:182) java.net.SocksSocketImpl.connect(SocksSocketImpl.java:391) java.net.Socket.connect(Socket.java:579) java.net.Socket.connect(Socket.java:528) java.net.Socket.<init>(Socket.java:425) java.net.Socket.<init>(Socket.java:241) php.java.bridge.http.SocketChannelFactory.test(SocketChannelFactory.java:54) php.java.servlet.fastcgi.FastCGIServlet.init(FastCGIServlet.java:131) org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472) org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98) org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:927) org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407) org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:987) org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:579) org.apache.tomcat.util.net.AprEndpoint$SocketWithOptionsProcessor.run(AprEndpoint.java:1763) java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110) java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603) java.lang.Thread.run(Thread.java:722) The problem was that the ContextLoaderListener of the bridge tries to write a few files into the WEB-INF directory of the web app and by default the tomcat7 user has no write access to it. To fix it you just have to make tomcat7 the owner of the web app dir, restart the server and then change the owner of all files back to root. I didn't find anything about this in the docs so you might want to add a hint. Another slightly strange thing is that the bridge creates a file called php-cgi.MISSING.README.txt when the sh wrapper and the system php is used, which I forced via the prefer_system_php_exec context parameter. regards, Hendrik |
From: <php...@li...> - 2012-11-22 02:47:46
|
Hello, I have a Java class with a enum inner class (from third): public class RecordRef implements java.io.Serializable, Comparable, test.common.Constants { public static enum Source {NONE,JBOSS,XML} public final Source source; public final String tableName; public final int id; public final String name; private Object key; public RecordRef(Source s, String t, int i, String n) { this.source = s; this.tableName = t; this.id = i; this.name = n; } .. I need to get a instance of Source to get a instance of RecordRef.but I'm not knowing how to get this. the FAQ shows to use "$" syntax: <?php $bridge = new java('php$java$bridge'); echo $bridge->JavaBridgeRunner; ?> But I'm trying : $j = new java("test.j2ee.dto.RecordRef$Source"); $r = $j->JBOSS; echo java_inspect($j); and this crash Tomcat.. Also $r=$j::JBOSS; crashes .On commenting line with $r, I get the inspect display but it is exactly the same for $j = new java("test.j2ee.dto.RecordRef"); (with the $Source).Maybe some problem with enum being static?? Can someone help me with this stuff?? Thanks for The Bridge, Ely Matos |
From: <php...@li...> - 2012-11-21 10:07:31
|
I am out of the office until 12/03/2012. Note: This is an automated response to your message "Re: [Php-java-bridge-users] php-java-bridge with spring framework" sent on 11/21/2012 12:47:31 AM. This is the only notification you will receive while this person is away. |
From: <php...@li...> - 2012-11-21 07:23:24
|
Hi Yepp - Done that. Here is an example : Public static function loadSpringBean($name) { $session=java_session(); $ctx=java("org.springframework.web.context.support.WebApplicationContextUtils")->getWebApplicationContext($session->getServletContext()); return $ctx->getBean($name); } Call this method from where you want to use a Spring bean. Hermod -----Opprinnelig melding----- Fra: php...@li... [mailto:php...@li...] Sendt: 20. november 2012 21:10 Til: php...@li... Emne: [Php-java-bridge-users] php-java-bridge with spring framework Hi, I would like to know if is possible to integrate the php-java bridge with a project created with spring and hibernate. I'm having some problems and I think it's because the bridge is not implementing the spring context that I use in the project. Can I integrate the bridge with the spring context? Thanks, ------------------------------------------------------------------------------ Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into apps, servers, databases, vmware, SAP, cloud infrastructure, etc. Download 30-day Free Trial. Pricing starts from $795 for 25 servers or applications! http://p.sf.net/sfu/zoho_dev2dev_nov _______________________________________________ php-java-bridge-users mailing list php...@li... https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This email with attachments is solely for the use of the individual or entity to whom it is addressed. Please also be aware that the DNB Group cannot accept any payment orders or other legally binding correspondence with customers as a part of an email. This email message has been virus checked by the anti virus programs used in the DNB Group. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
From: <php...@li...> - 2012-11-20 20:10:07
|
Hi, I would like to know if is possible to integrate the php-java bridge with a project created with spring and hibernate. I'm having some problems and I think it's because the bridge is not implementing the spring context that I use in the project. Can I integrate the bridge with the spring context? Thanks, |
From: <php...@li...> - 2012-11-13 16:16:46
|
Hello guys.. Have a doubt I want to use a php-java-bridge in a page php.. in a button.. so, i know that to run a php page I must to do this in a command prompt php -n -dallow_url_include=On test.php I've done a test, it works, but I don't know how I can do this in a page.. I want to write a message in a text box, press the button and... send a message to java server.. I read the documentation but.. I did not found nothing best regards Matheus Nani |