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
(1) |
2
|
|
3
|
4
(1) |
5
(21) |
6
(4) |
7
|
8
|
9
|
|
10
|
11
|
12
(1) |
13
|
14
(2) |
15
|
16
|
|
17
|
18
(1) |
19
|
20
|
21
(1) |
22
|
23
|
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
|
From: <php...@li...> - 2012-06-21 08:38:19
|
Hello,
We are running various PHP applications with Tomcat and
php-java-bridge. Everything worked fine until I installed phpMyAdmin. It
complained that the PHP installation was broken and unable to create
session files.
The box runs PHP 5.2.13, Tomcat 6.0.26 and Sun/Oracle
JDK 1.6.0_18 on top of Windows Server 2008 R2.
Long story short, the
root cause is the use of single quotes in:
session.save_path='C:Program FilesApache Software FoundationTomcat
6.0temp'
Using double quotes works perfectly:
session.save_path="C:Program FilesApache Software FoundationTomcat
6.0temp"
The solution is a tiny patch on lines 923-925 in
php-java-bridge-6.2.1serverphpjavabridgeUtil.java:
Original lines:
buf.append("'");
buf.append(val);
buf.append("'");
Patched lines:
buf.append(""");
buf.append(val);
buf.append(""");
Sincerely,
François
|
|
From: <php...@li...> - 2012-06-18 11:37:58
|
Hi, I'm trying to install javabridge with and installation of xampp for linux in Ubuntu, however I do not wish to use tomcat. I have followed the instructions and I have already tried running JavaBridge.war from /opt/lampp/bin (where php executable is) and from /opt/lampp/lib/php. I have /opt/lampp/bin in my path. I get this error when I try the javabridge: >bin # java -classpath JavaBridge.war TestInstallation Starting a simple servlet engine: [/usr/lib/jvm/java-7-oracle/jre/bin/java, -jar, /opt/lampp/bin/ext/JavaBridge.jar, SERVLET_LOCAL:8080] Jun 18 13:30:55 JavaBridge INFO : VM : 1.7.0_04@ http://java.oracle.com/ Jun 18 13:30:55 JavaBridge INFO : JavaBridge version : 6.2.1 Jun 18 13:30:55 JavaBridge INFO : logFile : Jun 18 13:30:55 JavaBridge INFO : default logLevel : 3 Jun 18 13:30:55 JavaBridge INFO : socket : SERVLET_LOCAL:8080 Jun 18 13:30:55 JavaBridge INFO : java.ext.dirs : /usr/lib/jvm/java-7-oracle/jre/lib/ext:/usr/java/packages/lib/ext Jun 18 13:30:55 JavaBridge INFO : php.java.bridge.base: /root Jun 18 13:30:55 JavaBridge INFO : thread pool size : 20 Jun 18 13:30:55 JavaBridge INFO : JavaBridgeRunner started on port INET_LOCAL:8080 Invoking php: [php-cgi, -n, -d, allow_url_include=On, /opt/lampp/bin/test.php] java.lang.RuntimeException: Could not run PHP ([php-cgi, -n, -d, allow_url_include=On, /opt/lampp/bin/test.php]), please check if php-cgi is in the path. at TestInstallation.start(TestInstallation.java:332) at TestInstallation.main(TestInstallation.java:252) Caused by: java.io.IOException: Cannot run program "php-cgi": error=2, No such file or directory at java.lang.ProcessBuilder.start(ProcessBuilder.java:1029) at java.lang.Runtime.exec(Runtime.java:615) at java.lang.Runtime.exec(Runtime.java:526) at TestInstallation.start(TestInstallation.java:330) ... 1 more Caused by: java.io.IOException: error=2, No such file or directory at java.lang.UNIXProcess.forkAndExec(Native Method) at java.lang.UNIXProcess.<init>(UNIXProcess.java:135) at java.lang.ProcessImpl.start(ProcessImpl.java:130) at java.lang.ProcessBuilder.start(ProcessBuilder.java:1021) ... 4 more What am I missing? tkx Herberto Graça _________________________________ |
|
From: <php...@li...> - 2012-06-14 13:30:20
|
You shouldn't use Testinstallation when running Tomcat, or really invoke Java on your own at all. Copy the .war file out to your Tomcat deployment path and make sure Tomcat's running - the deployment folder is usually called "webapps". That's all there is to it. For future reference, the query "tomcat deploy war file" will get you much further along your path than any mailing list. Thanks, Brandon On Thu, Jun 14, 2012 at 12:30 AM, < php...@li...> wrote: > I've installed PHP/Java Bridge on my PC using it as a test environment. > I've got WAMPSERVER installed on my PC and have Apache Tomcat running as a > service already but can't seem to get my TestInstallation (java -classpath > JavaBridge.war TestInstallation) to work. What have missed out in the > installation? I've tried looking around for detailed step by step guide > for installing the PHP/Java Bridge but have not been able to find it. Is > there anything that I need to change in my php.ini file or my httpd.conf > file? Appreciate if someone can provide me some guidance. Thanks. > > I am getting the following output when I run "java -classpath > JavaBridge.war TestInstallation": > Starting a simple servlet engine: [C:\Program Files\Java\jre7\bin\java, > -jar, c: > \wamp\www\ext\JavaBridge.jar, SERVLET_LOCAL:8081] > Jun 14 11:21:21 JavaBridge INFO : VM : > 1.7.0_04@http://java.ora > cle.com/ > Jun 14 11:21:21 JavaBridge INFO : JavaBridge version : 6.2.1 > Jun 14 11:21:21 JavaBridge INFO : logFile : > Jun 14 11:21:21 JavaBridge INFO : default logLevel : 3 > Jun 14 11:21:21 JavaBridge INFO : socket : SERVLET_LOCAL:8081 > Jun 14 11:21:21 JavaBridge INFO : java.ext.dirs : C:\Program > Files\Java\jr > e7\lib\ext;C:\Windows\Sun\Java\lib\ext > Jun 14 11:21:21 JavaBridge INFO : php.java.bridge.base: C:\Users\aw4552 > Jun 14 11:21:21 JavaBridge INFO : thread pool size : 20 > Jun 14 11:21:21 JavaBridge INFO : JavaBridgeRunner started on port > INET_LOCAL:80 > 81 > Invoking php: [php-cgi, -n, -d, allow_url_include=On, > c:\wamp\www\test.php] > java.lang.RuntimeException: Could not run PHP ([php-cgi, -n, -d, > allow_url_inclu > de=On, c:\wamp\www\test.php]), please check if php-cgi is in the path. > at TestInstallation.start(TestInstallation.java:332) > at TestInstallation.main(TestInstallation.java:252) > Caused by: java.io.IOException: Cannot run program "php-cgi": > CreateProcess erro > r=2, The system cannot find the file specified > at java.lang.ProcessBuilder.start(Unknown Source) > at java.lang.Runtime.exec(Unknown Source) > at java.lang.Runtime.exec(Unknown Source) > at TestInstallation.start(TestInstallation.java:330) > ... 1 more > Caused by: java.io.IOException: CreateProcess error=2, The system cannot > find th > e file specified > at java.lang.ProcessImpl.create(Native Method) > at java.lang.ProcessImpl.<init>(Unknown Source) > at java.lang.ProcessImpl.start(Unknown Source) > ... 5 more > > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > php-java-bridge-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users > |
|
From: <php...@li...> - 2012-06-14 04:29:59
|
I've installed PHP/Java Bridge on my PC using it as a test environment. I've got WAMPSERVER installed on my PC and have Apache Tomcat running as a service already but can't seem to get my TestInstallation (java -classpath JavaBridge.war TestInstallation) to work. What have missed out in the installation? I've tried looking around for detailed step by step guide for installing the PHP/Java Bridge but have not been able to find it. Is there anything that I need to change in my php.ini file or my httpd.conf file? Appreciate if someone can provide me some guidance. Thanks. I am getting the following output when I run "java -classpath JavaBridge.war TestInstallation": Starting a simple servlet engine: [C:\Program Files\Java\jre7\bin\java, -jar, c: \wamp\www\ext\JavaBridge.jar, SERVLET_LOCAL:8081] Jun 14 11:21:21 JavaBridge INFO : VM : 1.7.0_04@http://java.ora cle.com/ Jun 14 11:21:21 JavaBridge INFO : JavaBridge version : 6.2.1 Jun 14 11:21:21 JavaBridge INFO : logFile : Jun 14 11:21:21 JavaBridge INFO : default logLevel : 3 Jun 14 11:21:21 JavaBridge INFO : socket : SERVLET_LOCAL:8081 Jun 14 11:21:21 JavaBridge INFO : java.ext.dirs : C:\Program Files\Java\jr e7\lib\ext;C:\Windows\Sun\Java\lib\ext Jun 14 11:21:21 JavaBridge INFO : php.java.bridge.base: C:\Users\aw4552 Jun 14 11:21:21 JavaBridge INFO : thread pool size : 20 Jun 14 11:21:21 JavaBridge INFO : JavaBridgeRunner started on port INET_LOCAL:80 81 Invoking php: [php-cgi, -n, -d, allow_url_include=On, c:\wamp\www\test.php] java.lang.RuntimeException: Could not run PHP ([php-cgi, -n, -d, allow_url_inclu de=On, c:\wamp\www\test.php]), please check if php-cgi is in the path. at TestInstallation.start(TestInstallation.java:332) at TestInstallation.main(TestInstallation.java:252) Caused by: java.io.IOException: Cannot run program "php-cgi": CreateProcess erro r=2, The system cannot find the file specified at java.lang.ProcessBuilder.start(Unknown Source) at java.lang.Runtime.exec(Unknown Source) at java.lang.Runtime.exec(Unknown Source) at TestInstallation.start(TestInstallation.java:330) ... 1 more Caused by: java.io.IOException: CreateProcess error=2, The system cannot find th e file specified at java.lang.ProcessImpl.create(Native Method) at java.lang.ProcessImpl.<init>(Unknown Source) at java.lang.ProcessImpl.start(Unknown Source) ... 5 more |
|
From: <php...@li...> - 2012-06-12 17:56:16
|
Hi,
I would require your help in my case.
1) I could able to run JavaBridge.war with normal PHP examples successfully.
2) When I run PHP/CURL I get errors. Here is my curlTest.php
<?php
$ch = curl_init("http://www.example.com/");
$fp = fopen("example_homepage.txt", "w");
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);
?>
3) here is my php.ini
extension_dir="C:\Program Files (x86)\PHP\ext"
include_path="C:\apache-tomcat-6.0.29\apache-tomcat-6.0.29\webapps\JavaBridge\WEB-INF\pear;."
allow_url_include = On
extension=php_curl.dll
This is error I get in console when I run
http://localhost:8080/JavaBridge/curlTest.php<http://localhost:8080/JavaBridge_curl_test/excelTest.php>
PHP application terminated unexpectedly, have you started php-cgi with the
environment setting PHP_FCGI_MAX_REQUESTS=5000? Error:
php.java.bridge.http.FCGIConnectionException
php.java.bridge.http.FCGIConnectionException
at php.java.bridge.http.FCGIInputStream.read(FCGIInputStream.java:58)
at
php.java.servlet.fastcgi.FastCGIServlet.parseBody(FastCGIServlet.java:362)
at
php.java.servlet.fastcgi.FastCGIServlet.execute(FastCGIServlet.java:433)
at
php.java.servlet.fastcgi.FastCGIServlet.handle(FastCGIServlet.java:481)
at
php.java.servlet.fastcgi.FastCGIServlet.doGet(FastCGIServlet.java:521)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at php.java.servlet.PhpCGIFilter.doFilter(PhpCGIFilter.java:126)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:857)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
at
org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
at java.lang.Thread.run(Unknown Source)
Caused by: java.io.IOException: Protocol error
at php.java.bridge.http.FCGIInputStream.doRead(FCGIInputStream.java:67)
at php.java.bridge.http.FCGIInputStream.read(FCGIInputStream.java:54)
... 21 more
--------------------------------------------------------------------------------------------------------------------------
And following the stack trace I get in browser.
javax.servlet.ServletException: PHP FastCGI instance failed.
php.java.servlet.fastcgi.FastCGIServlet.execute(FastCGIServlet.java:448)
php.java.servlet.fastcgi.FastCGIServlet.handle(FastCGIServlet.java:481)
php.java.servlet.fastcgi.FastCGIServlet.doGet(FastCGIServlet.java:521)
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
php.java.servlet.PhpCGIFilter.doFilter(PhpCGIFilter.java:126)
*root cause*
php.java.bridge.http.FCGIConnectionException
php.java.bridge.http.FCGIInputStream.read(FCGIInputStream.java:58)
php.java.servlet.fastcgi.FastCGIServlet.parseBody(FastCGIServlet.java:362)
php.java.servlet.fastcgi.FastCGIServlet.execute(FastCGIServlet.java:433)
php.java.servlet.fastcgi.FastCGIServlet.handle(FastCGIServlet.java:481)
php.java.servlet.fastcgi.FastCGIServlet.doGet(FastCGIServlet.java:521)
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
php.java.servlet.PhpCGIFilter.doFilter(PhpCGIFilter.java:126)
=====================================================================================
Please help me out. Thank you!!
|
|
From: <php...@li...> - 2012-06-06 11:48:12
|
Don't make any changes they are not required. Its just a library in PHP. Also, you can try reading the install guide where you downloaded the bridge, not some other site. Thanks, Brandon Sent from my BlackBerry® powered by Virgin Mobile. -----Original Message----- From: php...@li... Date: Wed, 6 Jun 2012 04:25:54 To: <php...@li...> Reply-To: php...@li... Subject: Re: [Php-java-bridge-users] How to use php/java bridge with apache on xampp thanks for your consirn i dont know why the link appear like this .. but here is the link again http://www.dsl.uow.edu.au/~sk33/php5java.htm what should i do to use php/java bridge with apache .. i tried many changes in php.ini and no one works well ---Best RegardsEman Samy Basiony --- On Wed, 6/6/12, php...@li... <php...@li...> wrote: From: php...@li... <php...@li...> Subject: Re: [Php-java-bridge-users] How to use php/java bridge with apache on xampp To: php...@li... Date: Wednesday, June 6, 2012, 11:02 AM There is no dll for this PHP Java Bridge. The 404 you linked to was probably referring to a different one. Thanks, Brandon Sent from my BlackBerry® powered by Virgin Mobile. -----Original Message----- From: php...@li... Date: Wed, 6 Jun 2012 02:23:14 To: <php...@li...> Reply-To: php...@li... Subject: [Php-java-bridge-users] How to use php/java bridge with apache on xampp Hi all I'm facing a real problem that made me stuck I'm supposed to use cakephp and PHP/java Bridge with xampp (using apache or tomcat) till now i can use (cakePHP with apache ), and (PHP/Java Bridge with tomcat) the problem is to use both "cakePHP and PHP/java Bridge" on any of the 2 servers "tomcat or apache" i'm using the following environment: xampp-win32-1.7.7-VC9-installer,PHP Version 5.3.8Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/1.0.0e PHP/5.3.8 mod_perl/2.0.4 Perl/v5.10.1php-java-bridge_6.2.1jdk-7u3-windows-i586Windows 7also i followed the steps mentioned here :http://www.dsl.uow.edu.au/~sk33/php5java.htmstarting from "PHP 5 & Java Bridge" section but got stuck on step 3 and 4 as i couldn't find php_java.dll... so i downloaded it and continue .. then the modifications i made for php.ini made the apache stop workingsame steps followed here :http://www.apachefriends.org/f/viewtopic.php?f=16&t=41914but also didn't work any help would be greatly appreciated ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ php-java-bridge-users mailing list php...@li... https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ php-java-bridge-users mailing list php...@li... https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ php-java-bridge-users mailing list php...@li... https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users |
|
From: <php...@li...> - 2012-06-06 11:26:05
|
thanks for your consirn i dont know why the link appear like this .. but here is the link again http://www.dsl.uow.edu.au/~sk33/php5java.htm what should i do to use php/java bridge with apache .. i tried many changes in php.ini and no one works well ---Best RegardsEman Samy Basiony --- On Wed, 6/6/12, php...@li... <php...@li...> wrote: From: php...@li... <php...@li...> Subject: Re: [Php-java-bridge-users] How to use php/java bridge with apache on xampp To: php...@li... Date: Wednesday, June 6, 2012, 11:02 AM There is no dll for this PHP Java Bridge. The 404 you linked to was probably referring to a different one. Thanks, Brandon Sent from my BlackBerry® powered by Virgin Mobile. -----Original Message----- From: php...@li... Date: Wed, 6 Jun 2012 02:23:14 To: <php...@li...> Reply-To: php...@li... Subject: [Php-java-bridge-users] How to use php/java bridge with apache on xampp Hi all I'm facing a real problem that made me stuck I'm supposed to use cakephp and PHP/java Bridge with xampp (using apache or tomcat) till now i can use (cakePHP with apache ), and (PHP/Java Bridge with tomcat) the problem is to use both "cakePHP and PHP/java Bridge" on any of the 2 servers "tomcat or apache" i'm using the following environment: xampp-win32-1.7.7-VC9-installer,PHP Version 5.3.8Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/1.0.0e PHP/5.3.8 mod_perl/2.0.4 Perl/v5.10.1php-java-bridge_6.2.1jdk-7u3-windows-i586Windows 7also i followed the steps mentioned here :http://www.dsl.uow.edu.au/~sk33/php5java.htmstarting from "PHP 5 & Java Bridge" section but got stuck on step 3 and 4 as i couldn't find php_java.dll... so i downloaded it and continue .. then the modifications i made for php.ini made the apache stop workingsame steps followed here :http://www.apachefriends.org/f/viewtopic.php?f=16&t=41914but also didn't work any help would be greatly appreciated ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ php-java-bridge-users mailing list php...@li... https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ php-java-bridge-users mailing list php...@li... https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users |
|
From: <php...@li...> - 2012-06-06 11:02:38
|
There is no dll for this PHP Java Bridge. The 404 you linked to was probably referring to a different one. Thanks, Brandon Sent from my BlackBerry® powered by Virgin Mobile. -----Original Message----- From: php...@li... Date: Wed, 6 Jun 2012 02:23:14 To: <php...@li...> Reply-To: php...@li... Subject: [Php-java-bridge-users] How to use php/java bridge with apache on xampp Hi all I'm facing a real problem that made me stuck I'm supposed to use cakephp and PHP/java Bridge with xampp (using apache or tomcat) till now i can use (cakePHP with apache ), and (PHP/Java Bridge with tomcat) the problem is to use both "cakePHP and PHP/java Bridge" on any of the 2 servers "tomcat or apache" i'm using the following environment: xampp-win32-1.7.7-VC9-installer,PHP Version 5.3.8Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/1.0.0e PHP/5.3.8 mod_perl/2.0.4 Perl/v5.10.1php-java-bridge_6.2.1jdk-7u3-windows-i586Windows 7also i followed the steps mentioned here :http://www.dsl.uow.edu.au/~sk33/php5java.htmstarting from "PHP 5 & Java Bridge" section but got stuck on step 3 and 4 as i couldn't find php_java.dll... so i downloaded it and continue .. then the modifications i made for php.ini made the apache stop workingsame steps followed here :http://www.apachefriends.org/f/viewtopic.php?f=16&t=41914but also didn't work any help would be greatly appreciated ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ php-java-bridge-users mailing list php...@li... https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users |
|
From: <php...@li...> - 2012-06-06 09:23:25
|
Hi all I'm facing a real problem that made me stuck I'm supposed to use cakephp and PHP/java Bridge with xampp (using apache or tomcat) till now i can use (cakePHP with apache ), and (PHP/Java Bridge with tomcat) the problem is to use both "cakePHP and PHP/java Bridge" on any of the 2 servers "tomcat or apache" i'm using the following environment: xampp-win32-1.7.7-VC9-installer,PHP Version 5.3.8Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/1.0.0e PHP/5.3.8 mod_perl/2.0.4 Perl/v5.10.1php-java-bridge_6.2.1jdk-7u3-windows-i586Windows 7also i followed the steps mentioned here :http://www.dsl.uow.edu.au/~sk33/php5java.htmstarting from "PHP 5 & Java Bridge" section but got stuck on step 3 and 4 as i couldn't find php_java.dll... so i downloaded it and continue .. then the modifications i made for php.ini made the apache stop workingsame steps followed here :http://www.apachefriends.org/f/viewtopic.php?f=16&t=41914but also didn't work any help would be greatly appreciated |
|
From: <php...@li...> - 2012-06-05 19:03:10
|
Hi. Again. Call getWriter() before doing anything else. This will force the bridge to use getWriter, too. In any case, this not a problem with the java bridge. |
|
From: <php...@li...> - 2012-06-05 15:32:31
|
I think you forget to read that Tomcat6 is on CentOS 6 but which not
working is Tomcat5 with Fedora Release 7
On Tue, Jun 5, 2012 at 6:01 PM, <php...@li...
> wrote:
> Thanks for the great details in your request for help.
>
> Tomcat6 works, PHP Java bridge works, but Tomcat5 doesn't seem to work.
> And it's 100% custom code.
>
> I think you've got the wrong mailing list.
>
> Thanks,
> Brandon
>
> On Tue, Jun 5, 2012 at 1:29 AM, <
> php...@li...
> > wrote:
>
> > Hi,
> >
> > I have installed Java/PHP bridge on CentOS 6.0 and Tomcat6. Successfully
> > and also run my custom class very successfully without any problem.
> >
> > Now I have new environment with Fedora Release 7 and Tomcat 5. I have
> > installed Java/PHP bridge on it successfully. When I test following code
> >
> > <?php
> > require_once("http://localhost:8080/KPG/java/Java.inc");
> > echo java("java.lang.System")->getProperties();
> > ?>
> >
> > It works perfectly. But when I run my custom class, it did not works. The
> > custom class which is working very good in CentOS 6.0 with Tomcat6. I am
> > not understanding what can be the problem and how can solve it. Any help
> on
> > this will be very appriciate.
> >
> >
> ------------------------------------------------------------------------------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond. Discussions
> > will include endpoint security, mobile security and the latest in malware
> > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _______________________________________________
> > php-java-bridge-users mailing list
> > php...@li...
> > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
> >
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> php-java-bridge-users mailing list
> php...@li...
> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
>
|
|
From: <php...@li...> - 2012-06-05 15:01:46
|
Thanks for the great details in your request for help.
Tomcat6 works, PHP Java bridge works, but Tomcat5 doesn't seem to work.
And it's 100% custom code.
I think you've got the wrong mailing list.
Thanks,
Brandon
On Tue, Jun 5, 2012 at 1:29 AM, <php...@li...
> wrote:
> Hi,
>
> I have installed Java/PHP bridge on CentOS 6.0 and Tomcat6. Successfully
> and also run my custom class very successfully without any problem.
>
> Now I have new environment with Fedora Release 7 and Tomcat 5. I have
> installed Java/PHP bridge on it successfully. When I test following code
>
> <?php
> require_once("http://localhost:8080/KPG/java/Java.inc");
> echo java("java.lang.System")->getProperties();
> ?>
>
> It works perfectly. But when I run my custom class, it did not works. The
> custom class which is working very good in CentOS 6.0 with Tomcat6. I am
> not understanding what can be the problem and how can solve it. Any help on
> this will be very appriciate.
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> php-java-bridge-users mailing list
> php...@li...
> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
>
|
|
From: <php...@li...> - 2012-06-05 10:08:49
|
Yea lots of time. On Tue, Jun 5, 2012 at 10:49 AM, < php...@li...> wrote: > Hi > > Nothing in the logs - Did you make a request before posting the logs? > > Hermod > > -----Original Message----- > From: php...@li... [mailto: > php...@li...] > Sent: Tuesday, June 05, 2012 9:05 AM > To: php...@li... > Subject: Re: [Php-java-bridge-users] Custom Java Class > > And this is my localhost log > > 5-Jun-12 6:10:45 AM org.apache.catalina.core.ApplicationContext log > INFO: SessionListener: contextDestroyed() > 5-Jun-12 6:10:45 AM org.apache.catalina.core.ApplicationContext log > INFO: ContextListener: contextDestroyed() > 5-Jun-12 6:10:45 AM org.apache.catalina.core.ApplicationContext log > INFO: SessionListener: contextDestroyed() > 5-Jun-12 6:10:45 AM org.apache.catalina.core.ApplicationContext log > INFO: ContextListener: contextDestroyed() > 5-Jun-12 6:14:54 AM org.apache.catalina.core.ApplicationContext log > INFO: ContextListener: contextInitialized() > 5-Jun-12 6:14:54 AM org.apache.catalina.core.ApplicationContext log > INFO: SessionListener: contextInitialized() > 5-Jun-12 6:14:54 AM org.apache.catalina.core.ApplicationContext log > INFO: ContextListener: contextInitialized() > 5-Jun-12 6:14:54 AM org.apache.catalina.core.ApplicationContext log > INFO: SessionListener: contextInitialized() > 5-Jun-12 6:14:55 AM org.apache.catalina.core.ApplicationContext log > INFO: org.apache.webapp.balancer.BalancerFilter: init(): ruleChain: > [org.apache.webapp.balancer.RuleChain: > [org.apache.webapp.balancer.rules.URLStringMatchRule: Target string: News > / Redirect URL: http://www.cnn.com], > [org.apache.webapp.balancer.rules.RequestParameterRule: Target param name: > paramName / Target param value: paramValue / Redirect URL: > http://www.yahoo.com], > [org.apache.webapp.balancer.rules.AcceptEverythingRule: Redirect URL: > http://jakarta.apache.org]] > 5-Jun-12 6:14:58 AM org.apache.catalina.core.ApplicationContext log > INFO: PhpJavaServlet: PHP/Java Bridge servlet > /usr/share/tomcat5/webapps/JavaBridge version 6.2.1 ready. > 5-Jun-12 8:00:05 AM org.apache.catalina.core.ApplicationContext log > INFO: SessionListener: contextDestroyed() > 5-Jun-12 8:00:05 AM org.apache.catalina.core.ApplicationContext log > INFO: ContextListener: contextDestroyed() > 5-Jun-12 8:00:05 AM org.apache.catalina.core.ApplicationContext log > INFO: SessionListener: contextDestroyed() > 5-Jun-12 8:00:05 AM org.apache.catalina.core.ApplicationContext log > INFO: ContextListener: contextDestroyed() > 5-Jun-12 8:00:13 AM org.apache.catalina.core.ApplicationContext log > INFO: ContextListener: contextInitialized() > 5-Jun-12 8:00:13 AM org.apache.catalina.core.ApplicationContext log > INFO: SessionListener: contextInitialized() > 5-Jun-12 8:00:13 AM org.apache.catalina.core.ApplicationContext log > INFO: ContextListener: contextInitialized() > 5-Jun-12 8:00:13 AM org.apache.catalina.core.ApplicationContext log > INFO: SessionListener: contextInitialized() > 5-Jun-12 8:00:13 AM org.apache.catalina.core.ApplicationContext log > INFO: org.apache.webapp.balancer.BalancerFilter: init(): ruleChain: > [org.apache.webapp.balancer.RuleChain: > [org.apache.webapp.balancer.rules.URLStringMatchRule: Target string: News > / Redirect URL: http://www.cnn.com], > [org.apache.webapp.balancer.rules.RequestParameterRule: Target param name: > paramName / Target param value: paramValue / Redirect URL: > http://www.yahoo.com], > [org.apache.webapp.balancer.rules.AcceptEverythingRule: Redirect URL: > http://jakarta.apache.org]] > 5-Jun-12 8:01:46 AM org.apache.catalina.core.ApplicationContext log > INFO: PhpJavaServlet: PHP/Java Bridge servlet > /usr/share/tomcat5/webapps/KPG version 6.2.1 ready. > > > On Tue, Jun 5, 2012 at 9:58 AM, Milind Saraswala > <mil...@gm...>wrote: > > > Okay I will past the log of "catalina.2012-06-05.log" > > > > 5-Jun-12 6:10:43 AM org.apache.coyote.http11.Http11BaseProtocol pause > > INFO: Pausing Coyote HTTP/1.1 on http-8080 > > 5-Jun-12 6:10:44 AM org.apache.catalina.core.StandardService stop > > INFO: Stopping service Catalina > > 5-Jun-12 6:10:45 AM org.apache.coyote.http11.Http11BaseProtocol > > destroy > > INFO: Stopping Coyote HTTP/1.1 on http-8080 > > 5-Jun-12 6:10:45 AM org.apache.catalina.core.AprLifecycleListener > > lifecycleEvent > > INFO: Failed shutdown of Apache Portable Runtime > > 5-Jun-12 6:14:52 AM org.apache.catalina.core.AprLifecycleListener > > lifecycleEvent > > INFO: The Apache Tomcat Native library which allows optimal > > performance in production environments was not found on the > java.library.path: > > /usr/lib/gcj-4.1.2 > > 5-Jun-12 6:14:52 AM org.apache.coyote.http11.Http11BaseProtocol init > > INFO: Initializing Coyote HTTP/1.1 on http-8080 > > 5-Jun-12 6:14:52 AM org.apache.catalina.startup.Catalina load > > INFO: Initialization processed in 632 ms > > 5-Jun-12 6:14:52 AM org.apache.catalina.core.StandardService start > > INFO: Starting service Catalina > > 5-Jun-12 6:14:52 AM org.apache.catalina.core.StandardEngine start > > INFO: Starting Servlet Engine: Apache Tomcat/5.5.26 > > 5-Jun-12 6:14:52 AM org.apache.catalina.core.StandardHost start > > INFO: XML validation disabled > > 5-Jun-12 6:14:53 AM org.apache.catalina.startup.HostConfig deployWAR > > INFO: Deploying web application archive JavaBridge.war > > 5-Jun-12 6:14:55 AM org.apache.coyote.http11.Http11BaseProtocol start > > INFO: Starting Coyote HTTP/1.1 on http-8080 > > 5-Jun-12 6:14:55 AM org.apache.jk.common.ChannelSocket init > > INFO: JK: ajp13 listening on /0.0.0.0:8009 > > 5-Jun-12 6:14:55 AM org.apache.jk.server.JkMain start > > INFO: Jk running ID=0 time=0/28 config=null > > 5-Jun-12 6:14:55 AM org.apache.catalina.storeconfig.StoreLoader load > > INFO: Find registry server-registry.xml at classpath resource > > 5-Jun-12 6:14:55 AM org.apache.catalina.startup.Catalina start > > INFO: Server startup in 2913 ms > > 5-Jun-12 7:59:37 AM org.apache.catalina.startup.HostConfig deployWAR > > INFO: Deploying web application archive KPG.war > > 5-Jun-12 8:00:04 AM org.apache.coyote.http11.Http11BaseProtocol pause > > INFO: Pausing Coyote HTTP/1.1 on http-8080 > > 5-Jun-12 8:00:05 AM org.apache.catalina.core.StandardService stop > > INFO: Stopping service Catalina > > 5-Jun-12 8:00:05 AM org.apache.coyote.http11.Http11BaseProtocol > > destroy > > INFO: Stopping Coyote HTTP/1.1 on http-8080 > > 5-Jun-12 8:00:05 AM org.apache.catalina.core.AprLifecycleListener > > lifecycleEvent > > INFO: Failed shutdown of Apache Portable Runtime > > 5-Jun-12 8:00:09 AM org.apache.catalina.core.AprLifecycleListener > > lifecycleEvent > > INFO: The Apache Tomcat Native library which allows optimal > > performance in production environments was not found on the > java.library.path: > > /usr/lib/gcj-4.1.2 > > 5-Jun-12 8:00:09 AM org.apache.coyote.http11.Http11BaseProtocol init > > INFO: Initializing Coyote HTTP/1.1 on http-8080 > > 5-Jun-12 8:00:09 AM org.apache.catalina.startup.Catalina load > > INFO: Initialization processed in 551 ms > > 5-Jun-12 8:00:10 AM org.apache.catalina.core.StandardService start > > INFO: Starting service Catalina > > 5-Jun-12 8:00:10 AM org.apache.catalina.core.StandardEngine start > > INFO: Starting Servlet Engine: Apache Tomcat/5.5.26 > > 5-Jun-12 8:00:10 AM org.apache.catalina.core.StandardHost start > > INFO: XML validation disabled > > 5-Jun-12 8:00:10 AM org.apache.catalina.startup.HostConfig deployWAR > > INFO: Deploying web application archive KPG.war > > 5-Jun-12 8:00:11 AM org.apache.catalina.startup.HostConfig deployWAR > > INFO: Deploying web application archive JavaBridge.war > > 5-Jun-12 8:00:13 AM org.apache.coyote.http11.Http11BaseProtocol start > > INFO: Starting Coyote HTTP/1.1 on http-8080 > > 5-Jun-12 8:00:13 AM org.apache.jk.common.ChannelSocket init > > INFO: JK: ajp13 listening on /0.0.0.0:8009 > > 5-Jun-12 8:00:13 AM org.apache.jk.server.JkMain start > > INFO: Jk running ID=0 time=0/34 config=null > > 5-Jun-12 8:00:13 AM org.apache.catalina.storeconfig.StoreLoader load > > INFO: Find registry server-registry.xml at classpath resource > > 5-Jun-12 8:00:13 AM org.apache.catalina.startup.Catalina start > > INFO: Server startup in 3992 ms > > > > > > On Tue, Jun 5, 2012 at 9:55 AM, < > > php...@li...> wrote: > > > >> Hei > >> > >> They did not make it through - Also I would take the advice of > >> recompiling > >> > >> Hermod > >> > >> -----Original Message----- > >> From: php...@li... [mailto: > >> php...@li...] > >> Sent: Tuesday, June 05, 2012 8:52 AM > >> To: php...@li... > >> Subject: Re: [Php-java-bridge-users] Custom Java Class > >> > >> Hi, > >> > >> I am attaching both files and unfortunately I am not using Log4J. > >> Kindly can you have look on those file and let me know what can be > >> the problem > >> > >> On Tue, Jun 5, 2012 at 9:47 AM, < > >> php...@li... > >> > wrote: > >> > >> > Hi > >> > > >> > Look into the one called catalina.xxxx.log, and also the called > >> > localhost.xxxx.log > >> > > >> > This is where Tomcat normally writes error messages - Also if you > >> > are using something like Log4J I would look into the Log4J files > >> > (described in log4j.xml or log4j.properties under web-inf/classes) > >> > > >> > mvh > >> > Hermod > >> > > >> > -----Original Message----- > >> > From: php...@li... [mailto: > >> > php...@li...] > >> > Sent: Tuesday, June 05, 2012 8:39 AM > >> > To: php...@li... > >> > Subject: Re: [Php-java-bridge-users] Custom Java Class > >> > > >> > Hi, > >> > > >> > yea found it under "/var/log/tomcat5" But there is log log file > >> > which one you want me read, kindly can you give name of the log > >> > file > >> > > >> > On Tue, Jun 5, 2012 at 9:37 AM, < > >> > php...@li... > >> > > wrote: > >> > > >> > > Hi > >> > > > >> > > logs under your tomcat installation > >> > > > >> > > > >> > > Hermod > >> > > > >> > > -----Original Message----- > >> > > From: php...@li... [mailto: > >> > > php...@li...] > >> > > Sent: Tuesday, June 05, 2012 8:35 AM > >> > > To: php...@li... > >> > > Subject: Re: [Php-java-bridge-users] Custom Java Class > >> > > > >> > > Well I must be asking stupid question but what is the location of > >> > > the Tomcat logs > >> > > > >> > > On Tue, Jun 5, 2012 at 9:21 AM, < > >> > > php...@li... > >> > > > wrote: > >> > > > >> > > > Hi > >> > > > > >> > > > Both - Are you seeing traces of your class in the Tomcat logs? > >> > > > > >> > > > Hermod > >> > > > > >> > > > -----Original Message----- > >> > > > From: php...@li... [mailto: > >> > > > php...@li...] > >> > > > Sent: Tuesday, June 05, 2012 8:18 AM > >> > > > To: php...@li... > >> > > > Subject: Re: [Php-java-bridge-users] Custom Java Class > >> > > > > >> > > > hi, > >> > > > > >> > > > Kindly bare with me as I am new to this. > >> > > > > >> > > > Which log output do you need, Java log or PHP log. > >> > > > > >> > > > On Tue, Jun 5, 2012 at 8:31 AM, < > >> > > > php...@li... > >> > > > > wrote: > >> > > > > >> > > > > Hi > >> > > > > > >> > > > > Log output would be nice - Otherwise aiding is kind of hard > >> > > > > > >> > > > > Hermod > >> > > > > > >> > > > > -----Original Message----- > >> > > > > From: php...@li... [mailto: > >> > > > > php...@li...] > >> > > > > Sent: Tuesday, June 05, 2012 7:29 AM > >> > > > > To: php...@li... > >> > > > > Subject: [Php-java-bridge-users] Custom Java Class > >> > > > > > >> > > > > Hi, > >> > > > > > >> > > > > I have installed Java/PHP bridge on CentOS 6.0 and Tomcat6. > >> > > > > Successfully and also run my custom class very successfully > >> > > > > without any > >> > > > problem. > >> > > > > > >> > > > > Now I have new environment with Fedora Release 7 and Tomcat > >> > > > > 5. I have installed Java/PHP bridge on it successfully. When > >> > > > > I test following code > >> > > > > > >> > > > > <?php > >> > > > > require_once("http://localhost:8080/KPG/java/Java.inc"); > >> > > > > echo java("java.lang.System")->getProperties(); > >> > > > > ?> > >> > > > > > >> > > > > It works perfectly. But when I run my custom class, it did > >> > > > > not > >> works. > >> > > > > The custom class which is working very good in CentOS 6.0 > >> > > > > with Tomcat6. I am not understanding what can be the problem > >> > > > > and how can solve it. Any help on this will be very appriciate. > >> > > > > > >> > > > > ------------------------------------------------------------- > >> > > > > --- > >> > > > > -- > >> > > > > -- > >> > > > > -- > >> > > > > -------- > >> > > > > Live Security Virtual Conference Exclusive live event will > >> > > > > cover all the ways today's security and threat landscape has > >> > > > > changed and how IT managers can respond. > >> > > > > Discussions will include endpoint security, mobile security > >> > > > > and the latest in malware threats. > >> > > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > >> > > > > _______________________________________________ > >> > > > > php-java-bridge-users mailing list > >> > > > > php...@li... > >> > > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge- > >> > > > > use > >> > > > > rs > >> > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > >> > > > > * > >> > > > > * > >> > > > > * > >> > > > > * > >> > > > > * * * > >> > > > > > >> > > > > 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. > >> > > > > > >> > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > >> > > > > * > >> > > > > * > >> > > > > * > >> > > > > * > >> > > > > * * * > >> > > > > > >> > > > > > >> > > > > > >> > > > > ------------------------------------------------------------- > >> > > > > --- > >> > > > > -- > >> > > > > -- > >> > > > > -- > >> > > > > -------- > >> > > > > Live Security Virtual Conference Exclusive live event will > >> > > > > cover all the ways today's security and threat landscape has > >> > > > > changed and how IT managers can respond. > >> > > > > Discussions will include endpoint security, mobile security > >> > > > > and the latest in malware threats. > >> > > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > >> > > > > _______________________________________________ > >> > > > > php-java-bridge-users mailing list > >> > > > > php...@li... > >> > > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge- > >> > > > > use > >> > > > > rs > >> > > > > > >> > > > > >> > > > --------------------------------------------------------------- > >> > > > --- > >> > > > -- > >> > > > -- > >> > > > -------- > >> > > > Live Security Virtual Conference Exclusive live event will > >> > > > cover all the ways today's security and threat landscape has > >> > > > changed and how IT managers can respond. > >> > > > Discussions will include endpoint security, mobile security and > >> > > > the latest in malware threats. > >> > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > >> > > > _______________________________________________ > >> > > > php-java-bridge-users mailing list > >> > > > php...@li... > >> > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-us > >> > > > ers > >> > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > >> > > > * > >> > > > * > >> > > > * > >> > > > * * * > >> > > > > >> > > > 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. > >> > > > > >> > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > >> > > > * > >> > > > * > >> > > > * > >> > > > * * * > >> > > > > >> > > > > >> > > > > >> > > > --------------------------------------------------------------- > >> > > > --- > >> > > > -- > >> > > > -- > >> > > > -------- > >> > > > Live Security Virtual Conference Exclusive live event will > >> > > > cover all the ways today's security and threat landscape has > >> > > > changed and how IT managers can respond. > >> > > > Discussions will include endpoint security, mobile security and > >> > > > the latest in malware threats. > >> > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > >> > > > _______________________________________________ > >> > > > php-java-bridge-users mailing list > >> > > > php...@li... > >> > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-us > >> > > > ers > >> > > > > >> > > > >> > > ----------------------------------------------------------------- > >> > > --- > >> > > -- > >> > > -------- > >> > > Live Security Virtual Conference > >> > > Exclusive live event will cover all the ways today's security and > >> > > threat landscape has changed and how IT managers can respond. > >> > > Discussions will include endpoint security, mobile security and > >> > > the latest in malware threats. > >> > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > >> > > _______________________________________________ > >> > > php-java-bridge-users mailing list > >> > > php...@li... > >> > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-user > >> > > s > >> > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > >> > > * > >> > > * > >> > > * * * > >> > > > >> > > 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. > >> > > > >> > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > >> > > * > >> > > * > >> > > * * * > >> > > > >> > > > >> > > > >> > > ----------------------------------------------------------------- > >> > > --- > >> > > -- > >> > > -------- > >> > > Live Security Virtual Conference > >> > > Exclusive live event will cover all the ways today's security and > >> > > threat landscape has changed and how IT managers can respond. > >> > > Discussions will include endpoint security, mobile security and > >> > > the latest in malware threats. > >> > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > >> > > _______________________________________________ > >> > > php-java-bridge-users mailing list > >> > > php...@li... > >> > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-user > >> > > s > >> > > > >> > > >> > ------------------------------------------------------------------- > >> > --- > >> > -------- > >> > Live Security Virtual Conference > >> > Exclusive live event will cover all the ways today's security and > >> > threat landscape has changed and how IT managers can respond. > >> > Discussions will include endpoint security, mobile security and the > >> > latest in malware threats. > >> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > >> > _______________________________________________ > >> > 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. > >> > > >> > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > >> > * > >> > * * * > >> > > >> > > >> > > >> > ------------------------------------------------------------------- > >> > --- > >> > -------- > >> > Live Security Virtual Conference > >> > Exclusive live event will cover all the ways today's security and > >> > threat landscape has changed and how IT managers can respond. > >> > Discussions will include endpoint security, mobile security and the > >> > latest in malware threats. > >> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > >> > _______________________________________________ > >> > 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. > >> > >> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > >> * * > >> * > >> > >> > >> > >> --------------------------------------------------------------------- > >> --------- > >> Live Security Virtual Conference > >> Exclusive live event will cover all the ways today's security and > >> threat landscape has changed and how IT managers can respond. > >> Discussions will include endpoint security, mobile security and the > >> latest in malware threats. > >> http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > >> _______________________________________________ > >> php-java-bridge-users mailing list > >> php...@li... > >> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users > >> > > > > > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and threat > landscape has changed and how IT managers can respond. Discussions will > include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > 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. > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > > > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > php-java-bridge-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users > |
|
From: <php...@li...> - 2012-06-05 09:47:49
|
Hi, I've posted earlier about ctx.handleRequests(inputstream, outputstream); Actually, Im using eXo open-source portal which totally used getWriter() for all framework instead of outputstream, which has clear conflict with php-java-bridge. So, how could we handle this inside the code to prevent such kind of illegallStateException.? Take in considration, I used it inside Java Filter. Thanks |
|
From: <php...@li...> - 2012-06-05 07:49:42
|
Hi Nothing in the logs - Did you make a request before posting the logs? Hermod -----Original Message----- From: php...@li... [mailto:php...@li...] Sent: Tuesday, June 05, 2012 9:05 AM To: php...@li... Subject: Re: [Php-java-bridge-users] Custom Java Class And this is my localhost log 5-Jun-12 6:10:45 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextDestroyed() 5-Jun-12 6:10:45 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextDestroyed() 5-Jun-12 6:10:45 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextDestroyed() 5-Jun-12 6:10:45 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextDestroyed() 5-Jun-12 6:14:54 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextInitialized() 5-Jun-12 6:14:54 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextInitialized() 5-Jun-12 6:14:54 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextInitialized() 5-Jun-12 6:14:54 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextInitialized() 5-Jun-12 6:14:55 AM org.apache.catalina.core.ApplicationContext log INFO: org.apache.webapp.balancer.BalancerFilter: init(): ruleChain: [org.apache.webapp.balancer.RuleChain: [org.apache.webapp.balancer.rules.URLStringMatchRule: Target string: News / Redirect URL: http://www.cnn.com], [org.apache.webapp.balancer.rules.RequestParameterRule: Target param name: paramName / Target param value: paramValue / Redirect URL: http://www.yahoo.com], [org.apache.webapp.balancer.rules.AcceptEverythingRule: Redirect URL: http://jakarta.apache.org]] 5-Jun-12 6:14:58 AM org.apache.catalina.core.ApplicationContext log INFO: PhpJavaServlet: PHP/Java Bridge servlet /usr/share/tomcat5/webapps/JavaBridge version 6.2.1 ready. 5-Jun-12 8:00:05 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextDestroyed() 5-Jun-12 8:00:05 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextDestroyed() 5-Jun-12 8:00:05 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextDestroyed() 5-Jun-12 8:00:05 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextDestroyed() 5-Jun-12 8:00:13 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextInitialized() 5-Jun-12 8:00:13 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextInitialized() 5-Jun-12 8:00:13 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextInitialized() 5-Jun-12 8:00:13 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextInitialized() 5-Jun-12 8:00:13 AM org.apache.catalina.core.ApplicationContext log INFO: org.apache.webapp.balancer.BalancerFilter: init(): ruleChain: [org.apache.webapp.balancer.RuleChain: [org.apache.webapp.balancer.rules.URLStringMatchRule: Target string: News / Redirect URL: http://www.cnn.com], [org.apache.webapp.balancer.rules.RequestParameterRule: Target param name: paramName / Target param value: paramValue / Redirect URL: http://www.yahoo.com], [org.apache.webapp.balancer.rules.AcceptEverythingRule: Redirect URL: http://jakarta.apache.org]] 5-Jun-12 8:01:46 AM org.apache.catalina.core.ApplicationContext log INFO: PhpJavaServlet: PHP/Java Bridge servlet /usr/share/tomcat5/webapps/KPG version 6.2.1 ready. On Tue, Jun 5, 2012 at 9:58 AM, Milind Saraswala <mil...@gm...>wrote: > Okay I will past the log of "catalina.2012-06-05.log" > > 5-Jun-12 6:10:43 AM org.apache.coyote.http11.Http11BaseProtocol pause > INFO: Pausing Coyote HTTP/1.1 on http-8080 > 5-Jun-12 6:10:44 AM org.apache.catalina.core.StandardService stop > INFO: Stopping service Catalina > 5-Jun-12 6:10:45 AM org.apache.coyote.http11.Http11BaseProtocol > destroy > INFO: Stopping Coyote HTTP/1.1 on http-8080 > 5-Jun-12 6:10:45 AM org.apache.catalina.core.AprLifecycleListener > lifecycleEvent > INFO: Failed shutdown of Apache Portable Runtime > 5-Jun-12 6:14:52 AM org.apache.catalina.core.AprLifecycleListener > lifecycleEvent > INFO: The Apache Tomcat Native library which allows optimal > performance in production environments was not found on the java.library.path: > /usr/lib/gcj-4.1.2 > 5-Jun-12 6:14:52 AM org.apache.coyote.http11.Http11BaseProtocol init > INFO: Initializing Coyote HTTP/1.1 on http-8080 > 5-Jun-12 6:14:52 AM org.apache.catalina.startup.Catalina load > INFO: Initialization processed in 632 ms > 5-Jun-12 6:14:52 AM org.apache.catalina.core.StandardService start > INFO: Starting service Catalina > 5-Jun-12 6:14:52 AM org.apache.catalina.core.StandardEngine start > INFO: Starting Servlet Engine: Apache Tomcat/5.5.26 > 5-Jun-12 6:14:52 AM org.apache.catalina.core.StandardHost start > INFO: XML validation disabled > 5-Jun-12 6:14:53 AM org.apache.catalina.startup.HostConfig deployWAR > INFO: Deploying web application archive JavaBridge.war > 5-Jun-12 6:14:55 AM org.apache.coyote.http11.Http11BaseProtocol start > INFO: Starting Coyote HTTP/1.1 on http-8080 > 5-Jun-12 6:14:55 AM org.apache.jk.common.ChannelSocket init > INFO: JK: ajp13 listening on /0.0.0.0:8009 > 5-Jun-12 6:14:55 AM org.apache.jk.server.JkMain start > INFO: Jk running ID=0 time=0/28 config=null > 5-Jun-12 6:14:55 AM org.apache.catalina.storeconfig.StoreLoader load > INFO: Find registry server-registry.xml at classpath resource > 5-Jun-12 6:14:55 AM org.apache.catalina.startup.Catalina start > INFO: Server startup in 2913 ms > 5-Jun-12 7:59:37 AM org.apache.catalina.startup.HostConfig deployWAR > INFO: Deploying web application archive KPG.war > 5-Jun-12 8:00:04 AM org.apache.coyote.http11.Http11BaseProtocol pause > INFO: Pausing Coyote HTTP/1.1 on http-8080 > 5-Jun-12 8:00:05 AM org.apache.catalina.core.StandardService stop > INFO: Stopping service Catalina > 5-Jun-12 8:00:05 AM org.apache.coyote.http11.Http11BaseProtocol > destroy > INFO: Stopping Coyote HTTP/1.1 on http-8080 > 5-Jun-12 8:00:05 AM org.apache.catalina.core.AprLifecycleListener > lifecycleEvent > INFO: Failed shutdown of Apache Portable Runtime > 5-Jun-12 8:00:09 AM org.apache.catalina.core.AprLifecycleListener > lifecycleEvent > INFO: The Apache Tomcat Native library which allows optimal > performance in production environments was not found on the java.library.path: > /usr/lib/gcj-4.1.2 > 5-Jun-12 8:00:09 AM org.apache.coyote.http11.Http11BaseProtocol init > INFO: Initializing Coyote HTTP/1.1 on http-8080 > 5-Jun-12 8:00:09 AM org.apache.catalina.startup.Catalina load > INFO: Initialization processed in 551 ms > 5-Jun-12 8:00:10 AM org.apache.catalina.core.StandardService start > INFO: Starting service Catalina > 5-Jun-12 8:00:10 AM org.apache.catalina.core.StandardEngine start > INFO: Starting Servlet Engine: Apache Tomcat/5.5.26 > 5-Jun-12 8:00:10 AM org.apache.catalina.core.StandardHost start > INFO: XML validation disabled > 5-Jun-12 8:00:10 AM org.apache.catalina.startup.HostConfig deployWAR > INFO: Deploying web application archive KPG.war > 5-Jun-12 8:00:11 AM org.apache.catalina.startup.HostConfig deployWAR > INFO: Deploying web application archive JavaBridge.war > 5-Jun-12 8:00:13 AM org.apache.coyote.http11.Http11BaseProtocol start > INFO: Starting Coyote HTTP/1.1 on http-8080 > 5-Jun-12 8:00:13 AM org.apache.jk.common.ChannelSocket init > INFO: JK: ajp13 listening on /0.0.0.0:8009 > 5-Jun-12 8:00:13 AM org.apache.jk.server.JkMain start > INFO: Jk running ID=0 time=0/34 config=null > 5-Jun-12 8:00:13 AM org.apache.catalina.storeconfig.StoreLoader load > INFO: Find registry server-registry.xml at classpath resource > 5-Jun-12 8:00:13 AM org.apache.catalina.startup.Catalina start > INFO: Server startup in 3992 ms > > > On Tue, Jun 5, 2012 at 9:55 AM, < > php...@li...> wrote: > >> Hei >> >> They did not make it through - Also I would take the advice of >> recompiling >> >> Hermod >> >> -----Original Message----- >> From: php...@li... [mailto: >> php...@li...] >> Sent: Tuesday, June 05, 2012 8:52 AM >> To: php...@li... >> Subject: Re: [Php-java-bridge-users] Custom Java Class >> >> Hi, >> >> I am attaching both files and unfortunately I am not using Log4J. >> Kindly can you have look on those file and let me know what can be >> the problem >> >> On Tue, Jun 5, 2012 at 9:47 AM, < >> php...@li... >> > wrote: >> >> > Hi >> > >> > Look into the one called catalina.xxxx.log, and also the called >> > localhost.xxxx.log >> > >> > This is where Tomcat normally writes error messages - Also if you >> > are using something like Log4J I would look into the Log4J files >> > (described in log4j.xml or log4j.properties under web-inf/classes) >> > >> > mvh >> > Hermod >> > >> > -----Original Message----- >> > From: php...@li... [mailto: >> > php...@li...] >> > Sent: Tuesday, June 05, 2012 8:39 AM >> > To: php...@li... >> > Subject: Re: [Php-java-bridge-users] Custom Java Class >> > >> > Hi, >> > >> > yea found it under "/var/log/tomcat5" But there is log log file >> > which one you want me read, kindly can you give name of the log >> > file >> > >> > On Tue, Jun 5, 2012 at 9:37 AM, < >> > php...@li... >> > > wrote: >> > >> > > Hi >> > > >> > > logs under your tomcat installation >> > > >> > > >> > > Hermod >> > > >> > > -----Original Message----- >> > > From: php...@li... [mailto: >> > > php...@li...] >> > > Sent: Tuesday, June 05, 2012 8:35 AM >> > > To: php...@li... >> > > Subject: Re: [Php-java-bridge-users] Custom Java Class >> > > >> > > Well I must be asking stupid question but what is the location of >> > > the Tomcat logs >> > > >> > > On Tue, Jun 5, 2012 at 9:21 AM, < >> > > php...@li... >> > > > wrote: >> > > >> > > > Hi >> > > > >> > > > Both - Are you seeing traces of your class in the Tomcat logs? >> > > > >> > > > Hermod >> > > > >> > > > -----Original Message----- >> > > > From: php...@li... [mailto: >> > > > php...@li...] >> > > > Sent: Tuesday, June 05, 2012 8:18 AM >> > > > To: php...@li... >> > > > Subject: Re: [Php-java-bridge-users] Custom Java Class >> > > > >> > > > hi, >> > > > >> > > > Kindly bare with me as I am new to this. >> > > > >> > > > Which log output do you need, Java log or PHP log. >> > > > >> > > > On Tue, Jun 5, 2012 at 8:31 AM, < >> > > > php...@li... >> > > > > wrote: >> > > > >> > > > > Hi >> > > > > >> > > > > Log output would be nice - Otherwise aiding is kind of hard >> > > > > >> > > > > Hermod >> > > > > >> > > > > -----Original Message----- >> > > > > From: php...@li... [mailto: >> > > > > php...@li...] >> > > > > Sent: Tuesday, June 05, 2012 7:29 AM >> > > > > To: php...@li... >> > > > > Subject: [Php-java-bridge-users] Custom Java Class >> > > > > >> > > > > Hi, >> > > > > >> > > > > I have installed Java/PHP bridge on CentOS 6.0 and Tomcat6. >> > > > > Successfully and also run my custom class very successfully >> > > > > without any >> > > > problem. >> > > > > >> > > > > Now I have new environment with Fedora Release 7 and Tomcat >> > > > > 5. I have installed Java/PHP bridge on it successfully. When >> > > > > I test following code >> > > > > >> > > > > <?php >> > > > > require_once("http://localhost:8080/KPG/java/Java.inc"); >> > > > > echo java("java.lang.System")->getProperties(); >> > > > > ?> >> > > > > >> > > > > It works perfectly. But when I run my custom class, it did >> > > > > not >> works. >> > > > > The custom class which is working very good in CentOS 6.0 >> > > > > with Tomcat6. I am not understanding what can be the problem >> > > > > and how can solve it. Any help on this will be very appriciate. >> > > > > >> > > > > ------------------------------------------------------------- >> > > > > --- >> > > > > -- >> > > > > -- >> > > > > -- >> > > > > -------- >> > > > > Live Security Virtual Conference Exclusive live event will >> > > > > cover all the ways today's security and threat landscape has >> > > > > changed and how IT managers can respond. >> > > > > Discussions will include endpoint security, mobile security >> > > > > and the latest in malware threats. >> > > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> > > > > _______________________________________________ >> > > > > php-java-bridge-users mailing list >> > > > > php...@li... >> > > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge- >> > > > > use >> > > > > rs >> > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * >> > > > > * >> > > > > * >> > > > > * >> > > > > * >> > > > > * * * >> > > > > >> > > > > 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. >> > > > > >> > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * >> > > > > * >> > > > > * >> > > > > * >> > > > > * >> > > > > * * * >> > > > > >> > > > > >> > > > > >> > > > > ------------------------------------------------------------- >> > > > > --- >> > > > > -- >> > > > > -- >> > > > > -- >> > > > > -------- >> > > > > Live Security Virtual Conference Exclusive live event will >> > > > > cover all the ways today's security and threat landscape has >> > > > > changed and how IT managers can respond. >> > > > > Discussions will include endpoint security, mobile security >> > > > > and the latest in malware threats. >> > > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> > > > > _______________________________________________ >> > > > > php-java-bridge-users mailing list >> > > > > php...@li... >> > > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge- >> > > > > use >> > > > > rs >> > > > > >> > > > >> > > > --------------------------------------------------------------- >> > > > --- >> > > > -- >> > > > -- >> > > > -------- >> > > > Live Security Virtual Conference Exclusive live event will >> > > > cover all the ways today's security and threat landscape has >> > > > changed and how IT managers can respond. >> > > > Discussions will include endpoint security, mobile security and >> > > > the latest in malware threats. >> > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> > > > _______________________________________________ >> > > > php-java-bridge-users mailing list >> > > > php...@li... >> > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-us >> > > > ers >> > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * >> > > > * >> > > > * >> > > > * >> > > > * * * >> > > > >> > > > 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. >> > > > >> > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * >> > > > * >> > > > * >> > > > * >> > > > * * * >> > > > >> > > > >> > > > >> > > > --------------------------------------------------------------- >> > > > --- >> > > > -- >> > > > -- >> > > > -------- >> > > > Live Security Virtual Conference Exclusive live event will >> > > > cover all the ways today's security and threat landscape has >> > > > changed and how IT managers can respond. >> > > > Discussions will include endpoint security, mobile security and >> > > > the latest in malware threats. >> > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> > > > _______________________________________________ >> > > > php-java-bridge-users mailing list >> > > > php...@li... >> > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-us >> > > > ers >> > > > >> > > >> > > ----------------------------------------------------------------- >> > > --- >> > > -- >> > > -------- >> > > Live Security Virtual Conference >> > > Exclusive live event will cover all the ways today's security and >> > > threat landscape has changed and how IT managers can respond. >> > > Discussions will include endpoint security, mobile security and >> > > the latest in malware threats. >> > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> > > _______________________________________________ >> > > php-java-bridge-users mailing list >> > > php...@li... >> > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-user >> > > s >> > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * >> > > * >> > > * >> > > * * * >> > > >> > > 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. >> > > >> > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * >> > > * >> > > * >> > > * * * >> > > >> > > >> > > >> > > ----------------------------------------------------------------- >> > > --- >> > > -- >> > > -------- >> > > Live Security Virtual Conference >> > > Exclusive live event will cover all the ways today's security and >> > > threat landscape has changed and how IT managers can respond. >> > > Discussions will include endpoint security, mobile security and >> > > the latest in malware threats. >> > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> > > _______________________________________________ >> > > php-java-bridge-users mailing list >> > > php...@li... >> > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-user >> > > s >> > > >> > >> > ------------------------------------------------------------------- >> > --- >> > -------- >> > Live Security Virtual Conference >> > Exclusive live event will cover all the ways today's security and >> > threat landscape has changed and how IT managers can respond. >> > Discussions will include endpoint security, mobile security and the >> > latest in malware threats. >> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> > _______________________________________________ >> > 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. >> > >> > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * >> > * >> > * * * >> > >> > >> > >> > ------------------------------------------------------------------- >> > --- >> > -------- >> > Live Security Virtual Conference >> > Exclusive live event will cover all the ways today's security and >> > threat landscape has changed and how IT managers can respond. >> > Discussions will include endpoint security, mobile security and the >> > latest in malware threats. >> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> > _______________________________________________ >> > 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. >> >> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * >> * * >> * >> >> >> >> --------------------------------------------------------------------- >> --------- >> Live Security Virtual Conference >> Exclusive live event will cover all the ways today's security and >> threat landscape has changed and how IT managers can respond. >> Discussions will include endpoint security, mobile security and the >> latest in malware threats. >> http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> _______________________________________________ >> php-java-bridge-users mailing list >> php...@li... >> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users >> > > ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ 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-06-05 07:05:11
|
And this is my localhost log 5-Jun-12 6:10:45 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextDestroyed() 5-Jun-12 6:10:45 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextDestroyed() 5-Jun-12 6:10:45 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextDestroyed() 5-Jun-12 6:10:45 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextDestroyed() 5-Jun-12 6:14:54 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextInitialized() 5-Jun-12 6:14:54 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextInitialized() 5-Jun-12 6:14:54 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextInitialized() 5-Jun-12 6:14:54 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextInitialized() 5-Jun-12 6:14:55 AM org.apache.catalina.core.ApplicationContext log INFO: org.apache.webapp.balancer.BalancerFilter: init(): ruleChain: [org.apache.webapp.balancer.RuleChain: [org.apache.webapp.balancer.rules.URLStringMatchRule: Target string: News / Redirect URL: http://www.cnn.com], [org.apache.webapp.balancer.rules.RequestParameterRule: Target param name: paramName / Target param value: paramValue / Redirect URL: http://www.yahoo.com], [org.apache.webapp.balancer.rules.AcceptEverythingRule: Redirect URL: http://jakarta.apache.org]] 5-Jun-12 6:14:58 AM org.apache.catalina.core.ApplicationContext log INFO: PhpJavaServlet: PHP/Java Bridge servlet /usr/share/tomcat5/webapps/JavaBridge version 6.2.1 ready. 5-Jun-12 8:00:05 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextDestroyed() 5-Jun-12 8:00:05 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextDestroyed() 5-Jun-12 8:00:05 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextDestroyed() 5-Jun-12 8:00:05 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextDestroyed() 5-Jun-12 8:00:13 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextInitialized() 5-Jun-12 8:00:13 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextInitialized() 5-Jun-12 8:00:13 AM org.apache.catalina.core.ApplicationContext log INFO: ContextListener: contextInitialized() 5-Jun-12 8:00:13 AM org.apache.catalina.core.ApplicationContext log INFO: SessionListener: contextInitialized() 5-Jun-12 8:00:13 AM org.apache.catalina.core.ApplicationContext log INFO: org.apache.webapp.balancer.BalancerFilter: init(): ruleChain: [org.apache.webapp.balancer.RuleChain: [org.apache.webapp.balancer.rules.URLStringMatchRule: Target string: News / Redirect URL: http://www.cnn.com], [org.apache.webapp.balancer.rules.RequestParameterRule: Target param name: paramName / Target param value: paramValue / Redirect URL: http://www.yahoo.com], [org.apache.webapp.balancer.rules.AcceptEverythingRule: Redirect URL: http://jakarta.apache.org]] 5-Jun-12 8:01:46 AM org.apache.catalina.core.ApplicationContext log INFO: PhpJavaServlet: PHP/Java Bridge servlet /usr/share/tomcat5/webapps/KPG version 6.2.1 ready. On Tue, Jun 5, 2012 at 9:58 AM, Milind Saraswala <mil...@gm...>wrote: > Okay I will past the log of "catalina.2012-06-05.log" > > 5-Jun-12 6:10:43 AM org.apache.coyote.http11.Http11BaseProtocol pause > INFO: Pausing Coyote HTTP/1.1 on http-8080 > 5-Jun-12 6:10:44 AM org.apache.catalina.core.StandardService stop > INFO: Stopping service Catalina > 5-Jun-12 6:10:45 AM org.apache.coyote.http11.Http11BaseProtocol destroy > INFO: Stopping Coyote HTTP/1.1 on http-8080 > 5-Jun-12 6:10:45 AM org.apache.catalina.core.AprLifecycleListener > lifecycleEvent > INFO: Failed shutdown of Apache Portable Runtime > 5-Jun-12 6:14:52 AM org.apache.catalina.core.AprLifecycleListener > lifecycleEvent > INFO: The Apache Tomcat Native library which allows optimal performance in > production environments was not found on the java.library.path: > /usr/lib/gcj-4.1.2 > 5-Jun-12 6:14:52 AM org.apache.coyote.http11.Http11BaseProtocol init > INFO: Initializing Coyote HTTP/1.1 on http-8080 > 5-Jun-12 6:14:52 AM org.apache.catalina.startup.Catalina load > INFO: Initialization processed in 632 ms > 5-Jun-12 6:14:52 AM org.apache.catalina.core.StandardService start > INFO: Starting service Catalina > 5-Jun-12 6:14:52 AM org.apache.catalina.core.StandardEngine start > INFO: Starting Servlet Engine: Apache Tomcat/5.5.26 > 5-Jun-12 6:14:52 AM org.apache.catalina.core.StandardHost start > INFO: XML validation disabled > 5-Jun-12 6:14:53 AM org.apache.catalina.startup.HostConfig deployWAR > INFO: Deploying web application archive JavaBridge.war > 5-Jun-12 6:14:55 AM org.apache.coyote.http11.Http11BaseProtocol start > INFO: Starting Coyote HTTP/1.1 on http-8080 > 5-Jun-12 6:14:55 AM org.apache.jk.common.ChannelSocket init > INFO: JK: ajp13 listening on /0.0.0.0:8009 > 5-Jun-12 6:14:55 AM org.apache.jk.server.JkMain start > INFO: Jk running ID=0 time=0/28 config=null > 5-Jun-12 6:14:55 AM org.apache.catalina.storeconfig.StoreLoader load > INFO: Find registry server-registry.xml at classpath resource > 5-Jun-12 6:14:55 AM org.apache.catalina.startup.Catalina start > INFO: Server startup in 2913 ms > 5-Jun-12 7:59:37 AM org.apache.catalina.startup.HostConfig deployWAR > INFO: Deploying web application archive KPG.war > 5-Jun-12 8:00:04 AM org.apache.coyote.http11.Http11BaseProtocol pause > INFO: Pausing Coyote HTTP/1.1 on http-8080 > 5-Jun-12 8:00:05 AM org.apache.catalina.core.StandardService stop > INFO: Stopping service Catalina > 5-Jun-12 8:00:05 AM org.apache.coyote.http11.Http11BaseProtocol destroy > INFO: Stopping Coyote HTTP/1.1 on http-8080 > 5-Jun-12 8:00:05 AM org.apache.catalina.core.AprLifecycleListener > lifecycleEvent > INFO: Failed shutdown of Apache Portable Runtime > 5-Jun-12 8:00:09 AM org.apache.catalina.core.AprLifecycleListener > lifecycleEvent > INFO: The Apache Tomcat Native library which allows optimal performance in > production environments was not found on the java.library.path: > /usr/lib/gcj-4.1.2 > 5-Jun-12 8:00:09 AM org.apache.coyote.http11.Http11BaseProtocol init > INFO: Initializing Coyote HTTP/1.1 on http-8080 > 5-Jun-12 8:00:09 AM org.apache.catalina.startup.Catalina load > INFO: Initialization processed in 551 ms > 5-Jun-12 8:00:10 AM org.apache.catalina.core.StandardService start > INFO: Starting service Catalina > 5-Jun-12 8:00:10 AM org.apache.catalina.core.StandardEngine start > INFO: Starting Servlet Engine: Apache Tomcat/5.5.26 > 5-Jun-12 8:00:10 AM org.apache.catalina.core.StandardHost start > INFO: XML validation disabled > 5-Jun-12 8:00:10 AM org.apache.catalina.startup.HostConfig deployWAR > INFO: Deploying web application archive KPG.war > 5-Jun-12 8:00:11 AM org.apache.catalina.startup.HostConfig deployWAR > INFO: Deploying web application archive JavaBridge.war > 5-Jun-12 8:00:13 AM org.apache.coyote.http11.Http11BaseProtocol start > INFO: Starting Coyote HTTP/1.1 on http-8080 > 5-Jun-12 8:00:13 AM org.apache.jk.common.ChannelSocket init > INFO: JK: ajp13 listening on /0.0.0.0:8009 > 5-Jun-12 8:00:13 AM org.apache.jk.server.JkMain start > INFO: Jk running ID=0 time=0/34 config=null > 5-Jun-12 8:00:13 AM org.apache.catalina.storeconfig.StoreLoader load > INFO: Find registry server-registry.xml at classpath resource > 5-Jun-12 8:00:13 AM org.apache.catalina.startup.Catalina start > INFO: Server startup in 3992 ms > > > On Tue, Jun 5, 2012 at 9:55 AM, < > php...@li...> wrote: > >> Hei >> >> They did not make it through - Also I would take the advice of recompiling >> >> Hermod >> >> -----Original Message----- >> From: php...@li... [mailto: >> php...@li...] >> Sent: Tuesday, June 05, 2012 8:52 AM >> To: php...@li... >> Subject: Re: [Php-java-bridge-users] Custom Java Class >> >> Hi, >> >> I am attaching both files and unfortunately I am not using Log4J. Kindly >> can you have look on those file and let me know what can be the problem >> >> On Tue, Jun 5, 2012 at 9:47 AM, < >> php...@li... >> > wrote: >> >> > Hi >> > >> > Look into the one called catalina.xxxx.log, and also the called >> > localhost.xxxx.log >> > >> > This is where Tomcat normally writes error messages - Also if you are >> > using something like Log4J I would look into the Log4J files >> > (described in log4j.xml or log4j.properties under web-inf/classes) >> > >> > mvh >> > Hermod >> > >> > -----Original Message----- >> > From: php...@li... [mailto: >> > php...@li...] >> > Sent: Tuesday, June 05, 2012 8:39 AM >> > To: php...@li... >> > Subject: Re: [Php-java-bridge-users] Custom Java Class >> > >> > Hi, >> > >> > yea found it under "/var/log/tomcat5" But there is log log file which >> > one you want me read, kindly can you give name of the log file >> > >> > On Tue, Jun 5, 2012 at 9:37 AM, < >> > php...@li... >> > > wrote: >> > >> > > Hi >> > > >> > > logs under your tomcat installation >> > > >> > > >> > > Hermod >> > > >> > > -----Original Message----- >> > > From: php...@li... [mailto: >> > > php...@li...] >> > > Sent: Tuesday, June 05, 2012 8:35 AM >> > > To: php...@li... >> > > Subject: Re: [Php-java-bridge-users] Custom Java Class >> > > >> > > Well I must be asking stupid question but what is the location of >> > > the Tomcat logs >> > > >> > > On Tue, Jun 5, 2012 at 9:21 AM, < >> > > php...@li... >> > > > wrote: >> > > >> > > > Hi >> > > > >> > > > Both - Are you seeing traces of your class in the Tomcat logs? >> > > > >> > > > Hermod >> > > > >> > > > -----Original Message----- >> > > > From: php...@li... [mailto: >> > > > php...@li...] >> > > > Sent: Tuesday, June 05, 2012 8:18 AM >> > > > To: php...@li... >> > > > Subject: Re: [Php-java-bridge-users] Custom Java Class >> > > > >> > > > hi, >> > > > >> > > > Kindly bare with me as I am new to this. >> > > > >> > > > Which log output do you need, Java log or PHP log. >> > > > >> > > > On Tue, Jun 5, 2012 at 8:31 AM, < >> > > > php...@li... >> > > > > wrote: >> > > > >> > > > > Hi >> > > > > >> > > > > Log output would be nice - Otherwise aiding is kind of hard >> > > > > >> > > > > Hermod >> > > > > >> > > > > -----Original Message----- >> > > > > From: php...@li... [mailto: >> > > > > php...@li...] >> > > > > Sent: Tuesday, June 05, 2012 7:29 AM >> > > > > To: php...@li... >> > > > > Subject: [Php-java-bridge-users] Custom Java Class >> > > > > >> > > > > Hi, >> > > > > >> > > > > I have installed Java/PHP bridge on CentOS 6.0 and Tomcat6. >> > > > > Successfully and also run my custom class very successfully >> > > > > without any >> > > > problem. >> > > > > >> > > > > Now I have new environment with Fedora Release 7 and Tomcat 5. I >> > > > > have installed Java/PHP bridge on it successfully. When I test >> > > > > following code >> > > > > >> > > > > <?php >> > > > > require_once("http://localhost:8080/KPG/java/Java.inc"); >> > > > > echo java("java.lang.System")->getProperties(); >> > > > > ?> >> > > > > >> > > > > It works perfectly. But when I run my custom class, it did not >> works. >> > > > > The custom class which is working very good in CentOS 6.0 with >> > > > > Tomcat6. I am not understanding what can be the problem and how >> > > > > can solve it. Any help on this will be very appriciate. >> > > > > >> > > > > ---------------------------------------------------------------- >> > > > > -- >> > > > > -- >> > > > > -- >> > > > > -------- >> > > > > Live Security Virtual Conference Exclusive live event will cover >> > > > > all the ways today's security and threat landscape has changed >> > > > > and how IT managers can respond. >> > > > > Discussions will include endpoint security, mobile security and >> > > > > the latest in malware threats. >> > > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> > > > > _______________________________________________ >> > > > > php-java-bridge-users mailing list >> > > > > php...@li... >> > > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-use >> > > > > rs >> > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * >> > > > > * >> > > > > * >> > > > > * >> > > > > * * * >> > > > > >> > > > > 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. >> > > > > >> > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * >> > > > > * >> > > > > * >> > > > > * >> > > > > * * * >> > > > > >> > > > > >> > > > > >> > > > > ---------------------------------------------------------------- >> > > > > -- >> > > > > -- >> > > > > -- >> > > > > -------- >> > > > > Live Security Virtual Conference Exclusive live event will cover >> > > > > all the ways today's security and threat landscape has changed >> > > > > and how IT managers can respond. >> > > > > Discussions will include endpoint security, mobile security and >> > > > > the latest in malware threats. >> > > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> > > > > _______________________________________________ >> > > > > php-java-bridge-users mailing list >> > > > > php...@li... >> > > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-use >> > > > > rs >> > > > > >> > > > >> > > > ------------------------------------------------------------------ >> > > > -- >> > > > -- >> > > > -------- >> > > > Live Security Virtual Conference >> > > > Exclusive live event will cover all the ways today's security and >> > > > threat landscape has changed and how IT managers can respond. >> > > > Discussions will include endpoint security, mobile security and >> > > > the latest in malware threats. >> > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> > > > _______________________________________________ >> > > > 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. >> > > > >> > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * >> > > > * >> > > > * >> > > > * * * >> > > > >> > > > >> > > > >> > > > ------------------------------------------------------------------ >> > > > -- >> > > > -- >> > > > -------- >> > > > Live Security Virtual Conference >> > > > Exclusive live event will cover all the ways today's security and >> > > > threat landscape has changed and how IT managers can respond. >> > > > Discussions will include endpoint security, mobile security and >> > > > the latest in malware threats. >> > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> > > > _______________________________________________ >> > > > php-java-bridge-users mailing list >> > > > php...@li... >> > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users >> > > > >> > > >> > > -------------------------------------------------------------------- >> > > -- >> > > -------- >> > > Live Security Virtual Conference >> > > Exclusive live event will cover all the ways today's security and >> > > threat landscape has changed and how IT managers can respond. >> > > Discussions will include endpoint security, mobile security and the >> > > latest in malware threats. >> > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> > > _______________________________________________ >> > > 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. >> > > >> > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * >> > > * >> > > * * * >> > > >> > > >> > > >> > > -------------------------------------------------------------------- >> > > -- >> > > -------- >> > > Live Security Virtual Conference >> > > Exclusive live event will cover all the ways today's security and >> > > threat landscape has changed and how IT managers can respond. >> > > Discussions will include endpoint security, mobile security and the >> > > latest in malware threats. >> > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> > > _______________________________________________ >> > > php-java-bridge-users mailing list >> > > php...@li... >> > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users >> > > >> > >> > ---------------------------------------------------------------------- >> > -------- >> > Live Security Virtual Conference >> > Exclusive live event will cover all the ways today's security and >> > threat landscape has changed and how IT managers can respond. >> > Discussions will include endpoint security, mobile security and the >> > latest in malware threats. >> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> > _______________________________________________ >> > 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. >> > >> > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * >> > * * * >> > >> > >> > >> > ---------------------------------------------------------------------- >> > -------- >> > Live Security Virtual Conference >> > Exclusive live event will cover all the ways today's security and >> > threat landscape has changed and how IT managers can respond. >> > Discussions will include endpoint security, mobile security and the >> > latest in malware threats. >> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> > _______________________________________________ >> > 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. >> >> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * >> * >> >> >> >> ------------------------------------------------------------------------------ >> Live Security Virtual Conference >> Exclusive live event will cover all the ways today's security and >> threat landscape has changed and how IT managers can respond. Discussions >> will include endpoint security, mobile security and the latest in malware >> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ >> _______________________________________________ >> php-java-bridge-users mailing list >> php...@li... >> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users >> > > |
|
From: <php...@li...> - 2012-06-05 06:58:53
|
Okay I will past the log of "catalina.2012-06-05.log"
5-Jun-12 6:10:43 AM org.apache.coyote.http11.Http11BaseProtocol pause
INFO: Pausing Coyote HTTP/1.1 on http-8080
5-Jun-12 6:10:44 AM org.apache.catalina.core.StandardService stop
INFO: Stopping service Catalina
5-Jun-12 6:10:45 AM org.apache.coyote.http11.Http11BaseProtocol destroy
INFO: Stopping Coyote HTTP/1.1 on http-8080
5-Jun-12 6:10:45 AM org.apache.catalina.core.AprLifecycleListener
lifecycleEvent
INFO: Failed shutdown of Apache Portable Runtime
5-Jun-12 6:14:52 AM org.apache.catalina.core.AprLifecycleListener
lifecycleEvent
INFO: The Apache Tomcat Native library which allows optimal performance in
production environments was not found on the java.library.path:
/usr/lib/gcj-4.1.2
5-Jun-12 6:14:52 AM org.apache.coyote.http11.Http11BaseProtocol init
INFO: Initializing Coyote HTTP/1.1 on http-8080
5-Jun-12 6:14:52 AM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 632 ms
5-Jun-12 6:14:52 AM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
5-Jun-12 6:14:52 AM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/5.5.26
5-Jun-12 6:14:52 AM org.apache.catalina.core.StandardHost start
INFO: XML validation disabled
5-Jun-12 6:14:53 AM org.apache.catalina.startup.HostConfig deployWAR
INFO: Deploying web application archive JavaBridge.war
5-Jun-12 6:14:55 AM org.apache.coyote.http11.Http11BaseProtocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
5-Jun-12 6:14:55 AM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
5-Jun-12 6:14:55 AM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/28 config=null
5-Jun-12 6:14:55 AM org.apache.catalina.storeconfig.StoreLoader load
INFO: Find registry server-registry.xml at classpath resource
5-Jun-12 6:14:55 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 2913 ms
5-Jun-12 7:59:37 AM org.apache.catalina.startup.HostConfig deployWAR
INFO: Deploying web application archive KPG.war
5-Jun-12 8:00:04 AM org.apache.coyote.http11.Http11BaseProtocol pause
INFO: Pausing Coyote HTTP/1.1 on http-8080
5-Jun-12 8:00:05 AM org.apache.catalina.core.StandardService stop
INFO: Stopping service Catalina
5-Jun-12 8:00:05 AM org.apache.coyote.http11.Http11BaseProtocol destroy
INFO: Stopping Coyote HTTP/1.1 on http-8080
5-Jun-12 8:00:05 AM org.apache.catalina.core.AprLifecycleListener
lifecycleEvent
INFO: Failed shutdown of Apache Portable Runtime
5-Jun-12 8:00:09 AM org.apache.catalina.core.AprLifecycleListener
lifecycleEvent
INFO: The Apache Tomcat Native library which allows optimal performance in
production environments was not found on the java.library.path:
/usr/lib/gcj-4.1.2
5-Jun-12 8:00:09 AM org.apache.coyote.http11.Http11BaseProtocol init
INFO: Initializing Coyote HTTP/1.1 on http-8080
5-Jun-12 8:00:09 AM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 551 ms
5-Jun-12 8:00:10 AM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
5-Jun-12 8:00:10 AM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/5.5.26
5-Jun-12 8:00:10 AM org.apache.catalina.core.StandardHost start
INFO: XML validation disabled
5-Jun-12 8:00:10 AM org.apache.catalina.startup.HostConfig deployWAR
INFO: Deploying web application archive KPG.war
5-Jun-12 8:00:11 AM org.apache.catalina.startup.HostConfig deployWAR
INFO: Deploying web application archive JavaBridge.war
5-Jun-12 8:00:13 AM org.apache.coyote.http11.Http11BaseProtocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
5-Jun-12 8:00:13 AM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
5-Jun-12 8:00:13 AM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/34 config=null
5-Jun-12 8:00:13 AM org.apache.catalina.storeconfig.StoreLoader load
INFO: Find registry server-registry.xml at classpath resource
5-Jun-12 8:00:13 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 3992 ms
On Tue, Jun 5, 2012 at 9:55 AM, <php...@li...
> wrote:
> Hei
>
> They did not make it through - Also I would take the advice of recompiling
>
> Hermod
>
> -----Original Message-----
> From: php...@li... [mailto:
> php...@li...]
> Sent: Tuesday, June 05, 2012 8:52 AM
> To: php...@li...
> Subject: Re: [Php-java-bridge-users] Custom Java Class
>
> Hi,
>
> I am attaching both files and unfortunately I am not using Log4J. Kindly
> can you have look on those file and let me know what can be the problem
>
> On Tue, Jun 5, 2012 at 9:47 AM, <
> php...@li...
> > wrote:
>
> > Hi
> >
> > Look into the one called catalina.xxxx.log, and also the called
> > localhost.xxxx.log
> >
> > This is where Tomcat normally writes error messages - Also if you are
> > using something like Log4J I would look into the Log4J files
> > (described in log4j.xml or log4j.properties under web-inf/classes)
> >
> > mvh
> > Hermod
> >
> > -----Original Message-----
> > From: php...@li... [mailto:
> > php...@li...]
> > Sent: Tuesday, June 05, 2012 8:39 AM
> > To: php...@li...
> > Subject: Re: [Php-java-bridge-users] Custom Java Class
> >
> > Hi,
> >
> > yea found it under "/var/log/tomcat5" But there is log log file which
> > one you want me read, kindly can you give name of the log file
> >
> > On Tue, Jun 5, 2012 at 9:37 AM, <
> > php...@li...
> > > wrote:
> >
> > > Hi
> > >
> > > logs under your tomcat installation
> > >
> > >
> > > Hermod
> > >
> > > -----Original Message-----
> > > From: php...@li... [mailto:
> > > php...@li...]
> > > Sent: Tuesday, June 05, 2012 8:35 AM
> > > To: php...@li...
> > > Subject: Re: [Php-java-bridge-users] Custom Java Class
> > >
> > > Well I must be asking stupid question but what is the location of
> > > the Tomcat logs
> > >
> > > On Tue, Jun 5, 2012 at 9:21 AM, <
> > > php...@li...
> > > > wrote:
> > >
> > > > Hi
> > > >
> > > > Both - Are you seeing traces of your class in the Tomcat logs?
> > > >
> > > > Hermod
> > > >
> > > > -----Original Message-----
> > > > From: php...@li... [mailto:
> > > > php...@li...]
> > > > Sent: Tuesday, June 05, 2012 8:18 AM
> > > > To: php...@li...
> > > > Subject: Re: [Php-java-bridge-users] Custom Java Class
> > > >
> > > > hi,
> > > >
> > > > Kindly bare with me as I am new to this.
> > > >
> > > > Which log output do you need, Java log or PHP log.
> > > >
> > > > On Tue, Jun 5, 2012 at 8:31 AM, <
> > > > php...@li...
> > > > > wrote:
> > > >
> > > > > Hi
> > > > >
> > > > > Log output would be nice - Otherwise aiding is kind of hard
> > > > >
> > > > > Hermod
> > > > >
> > > > > -----Original Message-----
> > > > > From: php...@li... [mailto:
> > > > > php...@li...]
> > > > > Sent: Tuesday, June 05, 2012 7:29 AM
> > > > > To: php...@li...
> > > > > Subject: [Php-java-bridge-users] Custom Java Class
> > > > >
> > > > > Hi,
> > > > >
> > > > > I have installed Java/PHP bridge on CentOS 6.0 and Tomcat6.
> > > > > Successfully and also run my custom class very successfully
> > > > > without any
> > > > problem.
> > > > >
> > > > > Now I have new environment with Fedora Release 7 and Tomcat 5. I
> > > > > have installed Java/PHP bridge on it successfully. When I test
> > > > > following code
> > > > >
> > > > > <?php
> > > > > require_once("http://localhost:8080/KPG/java/Java.inc");
> > > > > echo java("java.lang.System")->getProperties();
> > > > > ?>
> > > > >
> > > > > It works perfectly. But when I run my custom class, it did not
> works.
> > > > > The custom class which is working very good in CentOS 6.0 with
> > > > > Tomcat6. I am not understanding what can be the problem and how
> > > > > can solve it. Any help on this will be very appriciate.
> > > > >
> > > > > ----------------------------------------------------------------
> > > > > --
> > > > > --
> > > > > --
> > > > > --------
> > > > > Live Security Virtual Conference Exclusive live event will cover
> > > > > all the ways today's security and threat landscape has changed
> > > > > and how IT managers can respond.
> > > > > Discussions will include endpoint security, mobile security and
> > > > > the latest in malware threats.
> > > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > > > _______________________________________________
> > > > > php-java-bridge-users mailing list
> > > > > php...@li...
> > > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-use
> > > > > rs
> > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > > > > *
> > > > > *
> > > > > *
> > > > > * * *
> > > > >
> > > > > 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.
> > > > >
> > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > > > > *
> > > > > *
> > > > > *
> > > > > * * *
> > > > >
> > > > >
> > > > >
> > > > > ----------------------------------------------------------------
> > > > > --
> > > > > --
> > > > > --
> > > > > --------
> > > > > Live Security Virtual Conference Exclusive live event will cover
> > > > > all the ways today's security and threat landscape has changed
> > > > > and how IT managers can respond.
> > > > > Discussions will include endpoint security, mobile security and
> > > > > the latest in malware threats.
> > > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > > > _______________________________________________
> > > > > php-java-bridge-users mailing list
> > > > > php...@li...
> > > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-use
> > > > > rs
> > > > >
> > > >
> > > > ------------------------------------------------------------------
> > > > --
> > > > --
> > > > --------
> > > > Live Security Virtual Conference
> > > > Exclusive live event will cover all the ways today's security and
> > > > threat landscape has changed and how IT managers can respond.
> > > > Discussions will include endpoint security, mobile security and
> > > > the latest in malware threats.
> > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > > _______________________________________________
> > > > 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.
> > > >
> > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > > > *
> > > > *
> > > > * * *
> > > >
> > > >
> > > >
> > > > ------------------------------------------------------------------
> > > > --
> > > > --
> > > > --------
> > > > Live Security Virtual Conference
> > > > Exclusive live event will cover all the ways today's security and
> > > > threat landscape has changed and how IT managers can respond.
> > > > Discussions will include endpoint security, mobile security and
> > > > the latest in malware threats.
> > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > > _______________________________________________
> > > > php-java-bridge-users mailing list
> > > > php...@li...
> > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
> > > >
> > >
> > > --------------------------------------------------------------------
> > > --
> > > --------
> > > Live Security Virtual Conference
> > > Exclusive live event will cover all the ways today's security and
> > > threat landscape has changed and how IT managers can respond.
> > > Discussions will include endpoint security, mobile security and the
> > > latest in malware threats.
> > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > _______________________________________________
> > > 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.
> > >
> > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > > *
> > > * * *
> > >
> > >
> > >
> > > --------------------------------------------------------------------
> > > --
> > > --------
> > > Live Security Virtual Conference
> > > Exclusive live event will cover all the ways today's security and
> > > threat landscape has changed and how IT managers can respond.
> > > Discussions will include endpoint security, mobile security and the
> > > latest in malware threats.
> > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > _______________________________________________
> > > php-java-bridge-users mailing list
> > > php...@li...
> > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
> > >
> >
> > ----------------------------------------------------------------------
> > --------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond.
> > Discussions will include endpoint security, mobile security and the
> > latest in malware threats.
> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _______________________________________________
> > 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.
> >
> > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > * * *
> >
> >
> >
> > ----------------------------------------------------------------------
> > --------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond.
> > Discussions will include endpoint security, mobile security and the
> > latest in malware threats.
> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _______________________________________________
> > 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.
>
> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
>
>
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> php-java-bridge-users mailing list
> php...@li...
> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
>
|
|
From: <php...@li...> - 2012-06-05 06:55:38
|
Hei
They did not make it through - Also I would take the advice of recompiling
Hermod
-----Original Message-----
From: php...@li... [mailto:php...@li...]
Sent: Tuesday, June 05, 2012 8:52 AM
To: php...@li...
Subject: Re: [Php-java-bridge-users] Custom Java Class
Hi,
I am attaching both files and unfortunately I am not using Log4J. Kindly can you have look on those file and let me know what can be the problem
On Tue, Jun 5, 2012 at 9:47 AM, <php...@li...
> wrote:
> Hi
>
> Look into the one called catalina.xxxx.log, and also the called
> localhost.xxxx.log
>
> This is where Tomcat normally writes error messages - Also if you are
> using something like Log4J I would look into the Log4J files
> (described in log4j.xml or log4j.properties under web-inf/classes)
>
> mvh
> Hermod
>
> -----Original Message-----
> From: php...@li... [mailto:
> php...@li...]
> Sent: Tuesday, June 05, 2012 8:39 AM
> To: php...@li...
> Subject: Re: [Php-java-bridge-users] Custom Java Class
>
> Hi,
>
> yea found it under "/var/log/tomcat5" But there is log log file which
> one you want me read, kindly can you give name of the log file
>
> On Tue, Jun 5, 2012 at 9:37 AM, <
> php...@li...
> > wrote:
>
> > Hi
> >
> > logs under your tomcat installation
> >
> >
> > Hermod
> >
> > -----Original Message-----
> > From: php...@li... [mailto:
> > php...@li...]
> > Sent: Tuesday, June 05, 2012 8:35 AM
> > To: php...@li...
> > Subject: Re: [Php-java-bridge-users] Custom Java Class
> >
> > Well I must be asking stupid question but what is the location of
> > the Tomcat logs
> >
> > On Tue, Jun 5, 2012 at 9:21 AM, <
> > php...@li...
> > > wrote:
> >
> > > Hi
> > >
> > > Both - Are you seeing traces of your class in the Tomcat logs?
> > >
> > > Hermod
> > >
> > > -----Original Message-----
> > > From: php...@li... [mailto:
> > > php...@li...]
> > > Sent: Tuesday, June 05, 2012 8:18 AM
> > > To: php...@li...
> > > Subject: Re: [Php-java-bridge-users] Custom Java Class
> > >
> > > hi,
> > >
> > > Kindly bare with me as I am new to this.
> > >
> > > Which log output do you need, Java log or PHP log.
> > >
> > > On Tue, Jun 5, 2012 at 8:31 AM, <
> > > php...@li...
> > > > wrote:
> > >
> > > > Hi
> > > >
> > > > Log output would be nice - Otherwise aiding is kind of hard
> > > >
> > > > Hermod
> > > >
> > > > -----Original Message-----
> > > > From: php...@li... [mailto:
> > > > php...@li...]
> > > > Sent: Tuesday, June 05, 2012 7:29 AM
> > > > To: php...@li...
> > > > Subject: [Php-java-bridge-users] Custom Java Class
> > > >
> > > > Hi,
> > > >
> > > > I have installed Java/PHP bridge on CentOS 6.0 and Tomcat6.
> > > > Successfully and also run my custom class very successfully
> > > > without any
> > > problem.
> > > >
> > > > Now I have new environment with Fedora Release 7 and Tomcat 5. I
> > > > have installed Java/PHP bridge on it successfully. When I test
> > > > following code
> > > >
> > > > <?php
> > > > require_once("http://localhost:8080/KPG/java/Java.inc");
> > > > echo java("java.lang.System")->getProperties();
> > > > ?>
> > > >
> > > > It works perfectly. But when I run my custom class, it did not works.
> > > > The custom class which is working very good in CentOS 6.0 with
> > > > Tomcat6. I am not understanding what can be the problem and how
> > > > can solve it. Any help on this will be very appriciate.
> > > >
> > > > ----------------------------------------------------------------
> > > > --
> > > > --
> > > > --
> > > > --------
> > > > Live Security Virtual Conference Exclusive live event will cover
> > > > all the ways today's security and threat landscape has changed
> > > > and how IT managers can respond.
> > > > Discussions will include endpoint security, mobile security and
> > > > the latest in malware threats.
> > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > > _______________________________________________
> > > > php-java-bridge-users mailing list
> > > > php...@li...
> > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-use
> > > > rs
> > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > > > *
> > > > *
> > > > *
> > > > * * *
> > > >
> > > > 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.
> > > >
> > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > > > *
> > > > *
> > > > *
> > > > * * *
> > > >
> > > >
> > > >
> > > > ----------------------------------------------------------------
> > > > --
> > > > --
> > > > --
> > > > --------
> > > > Live Security Virtual Conference Exclusive live event will cover
> > > > all the ways today's security and threat landscape has changed
> > > > and how IT managers can respond.
> > > > Discussions will include endpoint security, mobile security and
> > > > the latest in malware threats.
> > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > > _______________________________________________
> > > > php-java-bridge-users mailing list
> > > > php...@li...
> > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-use
> > > > rs
> > > >
> > >
> > > ------------------------------------------------------------------
> > > --
> > > --
> > > --------
> > > Live Security Virtual Conference
> > > Exclusive live event will cover all the ways today's security and
> > > threat landscape has changed and how IT managers can respond.
> > > Discussions will include endpoint security, mobile security and
> > > the latest in malware threats.
> > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > _______________________________________________
> > > 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.
> > >
> > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > > *
> > > *
> > > * * *
> > >
> > >
> > >
> > > ------------------------------------------------------------------
> > > --
> > > --
> > > --------
> > > Live Security Virtual Conference
> > > Exclusive live event will cover all the ways today's security and
> > > threat landscape has changed and how IT managers can respond.
> > > Discussions will include endpoint security, mobile security and
> > > the latest in malware threats.
> > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > _______________________________________________
> > > php-java-bridge-users mailing list
> > > php...@li...
> > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
> > >
> >
> > --------------------------------------------------------------------
> > --
> > --------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond.
> > Discussions will include endpoint security, mobile security and the
> > latest in malware threats.
> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _______________________________________________
> > 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.
> >
> > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > *
> > * * *
> >
> >
> >
> > --------------------------------------------------------------------
> > --
> > --------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond.
> > Discussions will include endpoint security, mobile security and the
> > latest in malware threats.
> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _______________________________________________
> > php-java-bridge-users mailing list
> > php...@li...
> > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
> >
>
> ----------------------------------------------------------------------
> --------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond.
> Discussions will include endpoint security, mobile security and the
> latest in malware threats.
> http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> 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.
>
> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> * * *
>
>
>
> ----------------------------------------------------------------------
> --------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond.
> Discussions will include endpoint security, mobile security and the
> latest in malware threats.
> http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> 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-06-05 06:52:52
|
Yea exactly it is fedora 7 not 17 On Tue, Jun 5, 2012 at 9:51 AM, <php...@li... > wrote: > You'll have to recompile your class against the old java version running on > fedora 7. (Assuming you mean 7, not 17). > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > php-java-bridge-users mailing list > php...@li... > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users > |
|
From: <php...@li...> - 2012-06-05 06:52:07
|
Hi,
I am attaching both files and unfortunately I am not using Log4J. Kindly
can you have look on those file and let me know what can be the problem
On Tue, Jun 5, 2012 at 9:47 AM, <php...@li...
> wrote:
> Hi
>
> Look into the one called catalina.xxxx.log, and also the called
> localhost.xxxx.log
>
> This is where Tomcat normally writes error messages - Also if you are
> using something like Log4J I would look into the Log4J files (described in
> log4j.xml or log4j.properties under web-inf/classes)
>
> mvh
> Hermod
>
> -----Original Message-----
> From: php...@li... [mailto:
> php...@li...]
> Sent: Tuesday, June 05, 2012 8:39 AM
> To: php...@li...
> Subject: Re: [Php-java-bridge-users] Custom Java Class
>
> Hi,
>
> yea found it under "/var/log/tomcat5" But there is log log file which one
> you want me read, kindly can you give name of the log file
>
> On Tue, Jun 5, 2012 at 9:37 AM, <
> php...@li...
> > wrote:
>
> > Hi
> >
> > logs under your tomcat installation
> >
> >
> > Hermod
> >
> > -----Original Message-----
> > From: php...@li... [mailto:
> > php...@li...]
> > Sent: Tuesday, June 05, 2012 8:35 AM
> > To: php...@li...
> > Subject: Re: [Php-java-bridge-users] Custom Java Class
> >
> > Well I must be asking stupid question but what is the location of the
> > Tomcat logs
> >
> > On Tue, Jun 5, 2012 at 9:21 AM, <
> > php...@li...
> > > wrote:
> >
> > > Hi
> > >
> > > Both - Are you seeing traces of your class in the Tomcat logs?
> > >
> > > Hermod
> > >
> > > -----Original Message-----
> > > From: php...@li... [mailto:
> > > php...@li...]
> > > Sent: Tuesday, June 05, 2012 8:18 AM
> > > To: php...@li...
> > > Subject: Re: [Php-java-bridge-users] Custom Java Class
> > >
> > > hi,
> > >
> > > Kindly bare with me as I am new to this.
> > >
> > > Which log output do you need, Java log or PHP log.
> > >
> > > On Tue, Jun 5, 2012 at 8:31 AM, <
> > > php...@li...
> > > > wrote:
> > >
> > > > Hi
> > > >
> > > > Log output would be nice - Otherwise aiding is kind of hard
> > > >
> > > > Hermod
> > > >
> > > > -----Original Message-----
> > > > From: php...@li... [mailto:
> > > > php...@li...]
> > > > Sent: Tuesday, June 05, 2012 7:29 AM
> > > > To: php...@li...
> > > > Subject: [Php-java-bridge-users] Custom Java Class
> > > >
> > > > Hi,
> > > >
> > > > I have installed Java/PHP bridge on CentOS 6.0 and Tomcat6.
> > > > Successfully and also run my custom class very successfully
> > > > without any
> > > problem.
> > > >
> > > > Now I have new environment with Fedora Release 7 and Tomcat 5. I
> > > > have installed Java/PHP bridge on it successfully. When I test
> > > > following code
> > > >
> > > > <?php
> > > > require_once("http://localhost:8080/KPG/java/Java.inc");
> > > > echo java("java.lang.System")->getProperties();
> > > > ?>
> > > >
> > > > It works perfectly. But when I run my custom class, it did not works.
> > > > The custom class which is working very good in CentOS 6.0 with
> > > > Tomcat6. I am not understanding what can be the problem and how
> > > > can solve it. Any help on this will be very appriciate.
> > > >
> > > > ------------------------------------------------------------------
> > > > --
> > > > --
> > > > --------
> > > > Live Security Virtual Conference
> > > > Exclusive live event will cover all the ways today's security and
> > > > threat landscape has changed and how IT managers can respond.
> > > > Discussions will include endpoint security, mobile security and
> > > > the latest in malware threats.
> > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > > _______________________________________________
> > > > 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.
> > > >
> > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > > > *
> > > > *
> > > > * * *
> > > >
> > > >
> > > >
> > > > ------------------------------------------------------------------
> > > > --
> > > > --
> > > > --------
> > > > Live Security Virtual Conference
> > > > Exclusive live event will cover all the ways today's security and
> > > > threat landscape has changed and how IT managers can respond.
> > > > Discussions will include endpoint security, mobile security and
> > > > the latest in malware threats.
> > > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > > _______________________________________________
> > > > php-java-bridge-users mailing list
> > > > php...@li...
> > > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
> > > >
> > >
> > > --------------------------------------------------------------------
> > > --
> > > --------
> > > Live Security Virtual Conference
> > > Exclusive live event will cover all the ways today's security and
> > > threat landscape has changed and how IT managers can respond.
> > > Discussions will include endpoint security, mobile security and the
> > > latest in malware threats.
> > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > _______________________________________________
> > > 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.
> > >
> > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > > *
> > > * * *
> > >
> > >
> > >
> > > --------------------------------------------------------------------
> > > --
> > > --------
> > > Live Security Virtual Conference
> > > Exclusive live event will cover all the ways today's security and
> > > threat landscape has changed and how IT managers can respond.
> > > Discussions will include endpoint security, mobile security and the
> > > latest in malware threats.
> > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > _______________________________________________
> > > php-java-bridge-users mailing list
> > > php...@li...
> > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
> > >
> >
> > ----------------------------------------------------------------------
> > --------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond.
> > Discussions will include endpoint security, mobile security and the
> > latest in malware threats.
> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _______________________________________________
> > 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.
> >
> > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > * * *
> >
> >
> >
> > ----------------------------------------------------------------------
> > --------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond.
> > Discussions will include endpoint security, mobile security and the
> > latest in malware threats.
> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _______________________________________________
> > php-java-bridge-users mailing list
> > php...@li...
> > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
> >
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and threat
> landscape has changed and how IT managers can respond. Discussions will
> include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> 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.
>
> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
>
>
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> php-java-bridge-users mailing list
> php...@li...
> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
>
|
|
From: <php...@li...> - 2012-06-05 06:51:18
|
You'll have to recompile your class against the old java version running on fedora 7. (Assuming you mean 7, not 17). |
|
From: <php...@li...> - 2012-06-05 06:47:17
|
Hi
Look into the one called catalina.xxxx.log, and also the called localhost.xxxx.log
This is where Tomcat normally writes error messages - Also if you are using something like Log4J I would look into the Log4J files (described in log4j.xml or log4j.properties under web-inf/classes)
mvh
Hermod
-----Original Message-----
From: php...@li... [mailto:php...@li...]
Sent: Tuesday, June 05, 2012 8:39 AM
To: php...@li...
Subject: Re: [Php-java-bridge-users] Custom Java Class
Hi,
yea found it under "/var/log/tomcat5" But there is log log file which one you want me read, kindly can you give name of the log file
On Tue, Jun 5, 2012 at 9:37 AM, <php...@li...
> wrote:
> Hi
>
> logs under your tomcat installation
>
>
> Hermod
>
> -----Original Message-----
> From: php...@li... [mailto:
> php...@li...]
> Sent: Tuesday, June 05, 2012 8:35 AM
> To: php...@li...
> Subject: Re: [Php-java-bridge-users] Custom Java Class
>
> Well I must be asking stupid question but what is the location of the
> Tomcat logs
>
> On Tue, Jun 5, 2012 at 9:21 AM, <
> php...@li...
> > wrote:
>
> > Hi
> >
> > Both - Are you seeing traces of your class in the Tomcat logs?
> >
> > Hermod
> >
> > -----Original Message-----
> > From: php...@li... [mailto:
> > php...@li...]
> > Sent: Tuesday, June 05, 2012 8:18 AM
> > To: php...@li...
> > Subject: Re: [Php-java-bridge-users] Custom Java Class
> >
> > hi,
> >
> > Kindly bare with me as I am new to this.
> >
> > Which log output do you need, Java log or PHP log.
> >
> > On Tue, Jun 5, 2012 at 8:31 AM, <
> > php...@li...
> > > wrote:
> >
> > > Hi
> > >
> > > Log output would be nice - Otherwise aiding is kind of hard
> > >
> > > Hermod
> > >
> > > -----Original Message-----
> > > From: php...@li... [mailto:
> > > php...@li...]
> > > Sent: Tuesday, June 05, 2012 7:29 AM
> > > To: php...@li...
> > > Subject: [Php-java-bridge-users] Custom Java Class
> > >
> > > Hi,
> > >
> > > I have installed Java/PHP bridge on CentOS 6.0 and Tomcat6.
> > > Successfully and also run my custom class very successfully
> > > without any
> > problem.
> > >
> > > Now I have new environment with Fedora Release 7 and Tomcat 5. I
> > > have installed Java/PHP bridge on it successfully. When I test
> > > following code
> > >
> > > <?php
> > > require_once("http://localhost:8080/KPG/java/Java.inc");
> > > echo java("java.lang.System")->getProperties();
> > > ?>
> > >
> > > It works perfectly. But when I run my custom class, it did not works.
> > > The custom class which is working very good in CentOS 6.0 with
> > > Tomcat6. I am not understanding what can be the problem and how
> > > can solve it. Any help on this will be very appriciate.
> > >
> > > ------------------------------------------------------------------
> > > --
> > > --
> > > --------
> > > Live Security Virtual Conference
> > > Exclusive live event will cover all the ways today's security and
> > > threat landscape has changed and how IT managers can respond.
> > > Discussions will include endpoint security, mobile security and
> > > the latest in malware threats.
> > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > _______________________________________________
> > > 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.
> > >
> > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > > *
> > > *
> > > * * *
> > >
> > >
> > >
> > > ------------------------------------------------------------------
> > > --
> > > --
> > > --------
> > > Live Security Virtual Conference
> > > Exclusive live event will cover all the ways today's security and
> > > threat landscape has changed and how IT managers can respond.
> > > Discussions will include endpoint security, mobile security and
> > > the latest in malware threats.
> > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > _______________________________________________
> > > php-java-bridge-users mailing list
> > > php...@li...
> > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
> > >
> >
> > --------------------------------------------------------------------
> > --
> > --------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond.
> > Discussions will include endpoint security, mobile security and the
> > latest in malware threats.
> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _______________________________________________
> > 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.
> >
> > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > *
> > * * *
> >
> >
> >
> > --------------------------------------------------------------------
> > --
> > --------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond.
> > Discussions will include endpoint security, mobile security and the
> > latest in malware threats.
> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _______________________________________________
> > php-java-bridge-users mailing list
> > php...@li...
> > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
> >
>
> ----------------------------------------------------------------------
> --------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond.
> Discussions will include endpoint security, mobile security and the
> latest in malware threats.
> http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> 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.
>
> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> * * *
>
>
>
> ----------------------------------------------------------------------
> --------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond.
> Discussions will include endpoint security, mobile security and the
> latest in malware threats.
> http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> php-java-bridge-users mailing list
> php...@li...
> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
>
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
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-06-05 06:39:35
|
Hi,
yea found it under "/var/log/tomcat5" But there is log log file which one
you want me read, kindly can you give name of the log file
On Tue, Jun 5, 2012 at 9:37 AM, <php...@li...
> wrote:
> Hi
>
> logs under your tomcat installation
>
>
> Hermod
>
> -----Original Message-----
> From: php...@li... [mailto:
> php...@li...]
> Sent: Tuesday, June 05, 2012 8:35 AM
> To: php...@li...
> Subject: Re: [Php-java-bridge-users] Custom Java Class
>
> Well I must be asking stupid question but what is the location of the
> Tomcat logs
>
> On Tue, Jun 5, 2012 at 9:21 AM, <
> php...@li...
> > wrote:
>
> > Hi
> >
> > Both - Are you seeing traces of your class in the Tomcat logs?
> >
> > Hermod
> >
> > -----Original Message-----
> > From: php...@li... [mailto:
> > php...@li...]
> > Sent: Tuesday, June 05, 2012 8:18 AM
> > To: php...@li...
> > Subject: Re: [Php-java-bridge-users] Custom Java Class
> >
> > hi,
> >
> > Kindly bare with me as I am new to this.
> >
> > Which log output do you need, Java log or PHP log.
> >
> > On Tue, Jun 5, 2012 at 8:31 AM, <
> > php...@li...
> > > wrote:
> >
> > > Hi
> > >
> > > Log output would be nice - Otherwise aiding is kind of hard
> > >
> > > Hermod
> > >
> > > -----Original Message-----
> > > From: php...@li... [mailto:
> > > php...@li...]
> > > Sent: Tuesday, June 05, 2012 7:29 AM
> > > To: php...@li...
> > > Subject: [Php-java-bridge-users] Custom Java Class
> > >
> > > Hi,
> > >
> > > I have installed Java/PHP bridge on CentOS 6.0 and Tomcat6.
> > > Successfully and also run my custom class very successfully without
> > > any
> > problem.
> > >
> > > Now I have new environment with Fedora Release 7 and Tomcat 5. I
> > > have installed Java/PHP bridge on it successfully. When I test
> > > following code
> > >
> > > <?php
> > > require_once("http://localhost:8080/KPG/java/Java.inc");
> > > echo java("java.lang.System")->getProperties();
> > > ?>
> > >
> > > It works perfectly. But when I run my custom class, it did not works.
> > > The custom class which is working very good in CentOS 6.0 with
> > > Tomcat6. I am not understanding what can be the problem and how can
> > > solve it. Any help on this will be very appriciate.
> > >
> > > --------------------------------------------------------------------
> > > --
> > > --------
> > > Live Security Virtual Conference
> > > Exclusive live event will cover all the ways today's security and
> > > threat landscape has changed and how IT managers can respond.
> > > Discussions will include endpoint security, mobile security and the
> > > latest in malware threats.
> > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > _______________________________________________
> > > 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.
> > >
> > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > > *
> > > * * *
> > >
> > >
> > >
> > > --------------------------------------------------------------------
> > > --
> > > --------
> > > Live Security Virtual Conference
> > > Exclusive live event will cover all the ways today's security and
> > > threat landscape has changed and how IT managers can respond.
> > > Discussions will include endpoint security, mobile security and the
> > > latest in malware threats.
> > > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > > _______________________________________________
> > > php-java-bridge-users mailing list
> > > php...@li...
> > > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
> > >
> >
> > ----------------------------------------------------------------------
> > --------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond.
> > Discussions will include endpoint security, mobile security and the
> > latest in malware threats.
> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _______________________________________________
> > 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.
> >
> > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > * * *
> >
> >
> >
> > ----------------------------------------------------------------------
> > --------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond.
> > Discussions will include endpoint security, mobile security and the
> > latest in malware threats.
> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _______________________________________________
> > php-java-bridge-users mailing list
> > php...@li...
> > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
> >
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and threat
> landscape has changed and how IT managers can respond. Discussions will
> include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> 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.
>
> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
>
>
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> php-java-bridge-users mailing list
> php...@li...
> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
>
|
|
From: <php...@li...> - 2012-06-05 06:37:23
|
Hi
logs under your tomcat installation
Hermod
-----Original Message-----
From: php...@li... [mailto:php...@li...]
Sent: Tuesday, June 05, 2012 8:35 AM
To: php...@li...
Subject: Re: [Php-java-bridge-users] Custom Java Class
Well I must be asking stupid question but what is the location of the Tomcat logs
On Tue, Jun 5, 2012 at 9:21 AM, <php...@li...
> wrote:
> Hi
>
> Both - Are you seeing traces of your class in the Tomcat logs?
>
> Hermod
>
> -----Original Message-----
> From: php...@li... [mailto:
> php...@li...]
> Sent: Tuesday, June 05, 2012 8:18 AM
> To: php...@li...
> Subject: Re: [Php-java-bridge-users] Custom Java Class
>
> hi,
>
> Kindly bare with me as I am new to this.
>
> Which log output do you need, Java log or PHP log.
>
> On Tue, Jun 5, 2012 at 8:31 AM, <
> php...@li...
> > wrote:
>
> > Hi
> >
> > Log output would be nice - Otherwise aiding is kind of hard
> >
> > Hermod
> >
> > -----Original Message-----
> > From: php...@li... [mailto:
> > php...@li...]
> > Sent: Tuesday, June 05, 2012 7:29 AM
> > To: php...@li...
> > Subject: [Php-java-bridge-users] Custom Java Class
> >
> > Hi,
> >
> > I have installed Java/PHP bridge on CentOS 6.0 and Tomcat6.
> > Successfully and also run my custom class very successfully without
> > any
> problem.
> >
> > Now I have new environment with Fedora Release 7 and Tomcat 5. I
> > have installed Java/PHP bridge on it successfully. When I test
> > following code
> >
> > <?php
> > require_once("http://localhost:8080/KPG/java/Java.inc");
> > echo java("java.lang.System")->getProperties();
> > ?>
> >
> > It works perfectly. But when I run my custom class, it did not works.
> > The custom class which is working very good in CentOS 6.0 with
> > Tomcat6. I am not understanding what can be the problem and how can
> > solve it. Any help on this will be very appriciate.
> >
> > --------------------------------------------------------------------
> > --
> > --------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond.
> > Discussions will include endpoint security, mobile security and the
> > latest in malware threats.
> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _______________________________________________
> > 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.
> >
> > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > *
> > * * *
> >
> >
> >
> > --------------------------------------------------------------------
> > --
> > --------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond.
> > Discussions will include endpoint security, mobile security and the
> > latest in malware threats.
> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _______________________________________________
> > php-java-bridge-users mailing list
> > php...@li...
> > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
> >
>
> ----------------------------------------------------------------------
> --------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond.
> Discussions will include endpoint security, mobile security and the
> latest in malware threats.
> http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> 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.
>
> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> * * *
>
>
>
> ----------------------------------------------------------------------
> --------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond.
> Discussions will include endpoint security, mobile security and the
> latest in malware threats.
> http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> php-java-bridge-users mailing list
> php...@li...
> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
>
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
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-06-05 06:35:03
|
Well I must be asking stupid question but what is the location of
the Tomcat logs
On Tue, Jun 5, 2012 at 9:21 AM, <php...@li...
> wrote:
> Hi
>
> Both - Are you seeing traces of your class in the Tomcat logs?
>
> Hermod
>
> -----Original Message-----
> From: php...@li... [mailto:
> php...@li...]
> Sent: Tuesday, June 05, 2012 8:18 AM
> To: php...@li...
> Subject: Re: [Php-java-bridge-users] Custom Java Class
>
> hi,
>
> Kindly bare with me as I am new to this.
>
> Which log output do you need, Java log or PHP log.
>
> On Tue, Jun 5, 2012 at 8:31 AM, <
> php...@li...
> > wrote:
>
> > Hi
> >
> > Log output would be nice - Otherwise aiding is kind of hard
> >
> > Hermod
> >
> > -----Original Message-----
> > From: php...@li... [mailto:
> > php...@li...]
> > Sent: Tuesday, June 05, 2012 7:29 AM
> > To: php...@li...
> > Subject: [Php-java-bridge-users] Custom Java Class
> >
> > Hi,
> >
> > I have installed Java/PHP bridge on CentOS 6.0 and Tomcat6.
> > Successfully and also run my custom class very successfully without any
> problem.
> >
> > Now I have new environment with Fedora Release 7 and Tomcat 5. I have
> > installed Java/PHP bridge on it successfully. When I test following
> > code
> >
> > <?php
> > require_once("http://localhost:8080/KPG/java/Java.inc");
> > echo java("java.lang.System")->getProperties();
> > ?>
> >
> > It works perfectly. But when I run my custom class, it did not works.
> > The custom class which is working very good in CentOS 6.0 with
> > Tomcat6. I am not understanding what can be the problem and how can
> > solve it. Any help on this will be very appriciate.
> >
> > ----------------------------------------------------------------------
> > --------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond.
> > Discussions will include endpoint security, mobile security and the
> > latest in malware threats.
> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _______________________________________________
> > 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.
> >
> > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> > * * *
> >
> >
> >
> > ----------------------------------------------------------------------
> > --------
> > Live Security Virtual Conference
> > Exclusive live event will cover all the ways today's security and
> > threat landscape has changed and how IT managers can respond.
> > Discussions will include endpoint security, mobile security and the
> > latest in malware threats.
> > http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> > _______________________________________________
> > php-java-bridge-users mailing list
> > php...@li...
> > https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
> >
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and threat
> landscape has changed and how IT managers can respond. Discussions will
> include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> 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.
>
> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
>
>
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> php-java-bridge-users mailing list
> php...@li...
> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
>
|