You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(6) |
Oct
(6) |
Nov
(8) |
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(19) |
Feb
(15) |
Mar
(10) |
Apr
(8) |
May
(7) |
Jun
(9) |
Jul
(13) |
Aug
(31) |
Sep
(111) |
Oct
(52) |
Nov
(72) |
Dec
(42) |
2006 |
Jan
(21) |
Feb
(32) |
Mar
(33) |
Apr
(24) |
May
(15) |
Jun
(40) |
Jul
(32) |
Aug
(19) |
Sep
(38) |
Oct
(37) |
Nov
(63) |
Dec
(37) |
2007 |
Jan
(18) |
Feb
(39) |
Mar
(69) |
Apr
(49) |
May
(71) |
Jun
(59) |
Jul
(71) |
Aug
(85) |
Sep
(46) |
Oct
(14) |
Nov
(25) |
Dec
(56) |
2008 |
Jan
(24) |
Feb
(77) |
Mar
(104) |
Apr
(44) |
May
(41) |
Jun
(11) |
Jul
(31) |
Aug
(59) |
Sep
(44) |
Oct
(86) |
Nov
(66) |
Dec
(93) |
2009 |
Jan
(88) |
Feb
(41) |
Mar
(49) |
Apr
(135) |
May
(22) |
Jun
(31) |
Jul
(60) |
Aug
(71) |
Sep
(76) |
Oct
(18) |
Nov
(52) |
Dec
(20) |
2010 |
Jan
(8) |
Feb
(50) |
Mar
(35) |
Apr
(48) |
May
(46) |
Jun
(84) |
Jul
(38) |
Aug
(61) |
Sep
(51) |
Oct
(31) |
Nov
(17) |
Dec
(18) |
2011 |
Jan
(51) |
Feb
(14) |
Mar
(17) |
Apr
(23) |
May
(15) |
Jun
(11) |
Jul
(5) |
Aug
(5) |
Sep
(15) |
Oct
(8) |
Nov
(5) |
Dec
(25) |
2012 |
Jan
(2) |
Feb
(4) |
Mar
(6) |
Apr
(9) |
May
(27) |
Jun
(32) |
Jul
(36) |
Aug
(10) |
Sep
(16) |
Oct
(3) |
Nov
(13) |
Dec
(7) |
2013 |
Jan
(1) |
Feb
(4) |
Mar
|
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(4) |
Oct
(2) |
Nov
(1) |
Dec
|
2014 |
Jan
|
Feb
|
Mar
(2) |
Apr
(1) |
May
(2) |
Jun
(9) |
Jul
(5) |
Aug
(2) |
Sep
(4) |
Oct
|
Nov
|
Dec
|
2015 |
Jan
(3) |
Feb
(2) |
Mar
(4) |
Apr
(3) |
May
(1) |
Jun
(2) |
Jul
|
Aug
(2) |
Sep
(5) |
Oct
(1) |
Nov
|
Dec
|
2016 |
Jan
|
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(5) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
2017 |
Jan
(6) |
Feb
|
Mar
|
Apr
(10) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(1) |
Dec
|
2018 |
Jan
(2) |
Feb
(5) |
Mar
|
Apr
|
May
(1) |
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2021 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2023 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
(2) |
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
(2) |
24
(8) |
25
(2) |
26
|
27
|
28
|
|
|
|
|
|
From: <php...@li...> - 2011-02-23 23:02:24
|
Hi, your java code has thrown an unchecked exception (error or runtime exception). After that your php code has tried to set a non-existing property on it. Any unchecked exception crossing the container boundary must be declared, otherwise the behaviour is undefined. Please see our FAQ for details. Your code contains several problems. Your java object backed by a php instance doesn't have any public methods. This may or may not be what you want. And you call a method as if it were a procedure. Won't work, so I assume that the code you have shown isn't the code you actually use. Either encode is actually static or the php code you have posted is missing a new statement. Regards, Jost Bökemeier |
From: <php...@li...> - 2011-02-23 21:26:27
|
Hello, I'm new at php-java-bridge (and in java). I made a class in Java CXF to invoke a webservice with ws-security (something that is difficult in PHP). The class is the following in short: package be.icthealth.ehealth; import org.apache.log4j.BasicConfigurator; import org.apache.log4j.Logger; import org.apache.log4j.Level; import org.apache.ws.security.handler.WSHandlerConstants; import org.apache.cxf.endpoint.dynamic.DynamicClientFactory; import org.apache.cxf.ws.security.wss4j.WSS4JOutInterceptor; import org.apache.cxf.endpoint.Client; import java.util.HashMap; import java.util.Map; import java.io.File; import java.net.URL; //import java.lang.reflect.Method; /** * * @author Koen Thomeer, MD, http://koen.thomeer.be */ public class Codage { /** * @param request the class EncodeRequest * @return response the class Response * @throws Exception */ public Object[] encode(Object request) throws Exception { //throw new Exception("test"); // configure logging BasicConfigurator.configure(); Logger.getLogger("org").setLevel(Level.WARN); java.util.logging.Logger.getLogger("").setLevel(java.util.logging.Level.WARNING); //code that I did leave out// // call the Codage Object[] response = client.invoke("encode", request); return response; } } The PHP code to call is the following (in short, it is nested in a function; $input is a PHP Instance): define("JAVA_PREFER_VALUES", false); require_once("http://localhost:8080/JavaBridgeWS/java/Java.inc"); try { $Codage = java("be.icthealth.ehealth.Codage"); $java_input = java_closure($input); $java_output = $Codage->encode($java_input); $output = java_values($java_output); print_r($output); } catch (JavaException $e) { // in case of an error, process the fault echo $e; } The error in the HTTPD log is the following: [Wed Feb 23 22:17:37 2011] [error] [client 84.196.244.172] PHP Fatal error: Couldn't execute method java_InternalException::__set in Unknown on line 0 [Wed Feb 23 22:17:37 2011] [error] [client 84.196.244.172] PHP Stack trace: [Wed Feb 23 22:17:37 2011] [error] [client 84.196.244.172] PHP 1. {main}() /project/wmailer-test/www/secure/test/codage_test.php:0 [Wed Feb 23 22:17:37 2011] [error] [client 84.196.244.172] PHP 2. EH_encode() /project/wmailer-test/www/secure/test/codage_test.php:5 [Wed Feb 23 22:17:37 2011] [error] [client 84.196.244.172] PHP 3. JavaClass->encode() /project/wmailer-test/www/secure/test/codage5.php:219 [Wed Feb 23 22:17:37 2011] [error] [client 84.196.244.172] PHP 4. Java->__call() http://localhost:8080/JavaBridgeWS/java/Java.inc:0 [Wed Feb 23 22:17:37 2011] [error] [client 84.196.244.172] PHP 5. java_AbstractJava->__call() http://localhost:8080/JavaBridgeWS/java/Java.inc:1999 [Wed Feb 23 22:17:37 2011] [error] [client 84.196.244.172] PHP 6. java_JavaProxy->__call() http://localhost:8080/JavaBridgeWS/java/Java.inc:1851 [Wed Feb 23 22:17:37 2011] [error] [client 84.196.244.172] PHP 7. java_Client->invokeMethod() http://localhost:8080/JavaBridgeWS/java/Java.inc:1752 [Wed Feb 23 22:17:37 2011] [error] [client 84.196.244.172] PHP 8. java_Client->getResult() http://localhost:8080/JavaBridgeWS/java/Java.inc:560 [Wed Feb 23 22:17:37 2011] [error] [client 84.196.244.172] PHP 9. java_Client->getWrappedResult() http://localhost:8080/JavaBridgeWS/java/Java.inc:366 [Wed Feb 23 22:17:37 2011] [error] [client 84.196.244.172] PHP 10. java_Arg->getResult() http://localhost:8080/JavaBridgeWS/java/Java.inc:360 [Wed Feb 23 22:17:37 2011] [error] [client 84.196.244.172] PHP 11. java_ThrowExceptionProxyFactory->checkResult() http://localhost:8080/JavaBridgeWS/java/Java.inc:235 Questions: 1. What I'm doing wrong? I don't understand the log. 2. Where I've to put the keystore, properties file, etc? Thx, Koen -- *Koen Thomeer*, MD, MSc http://koen.thomeer.be |