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
|
16
|
|
17
(2) |
18
|
19
|
20
|
21
(1) |
22
(3) |
23
|
|
24
|
25
(1) |
26
|
27
|
28
|
29
|
30
|
|
31
(1) |
|
|
|
|
|
|
|
From: <php...@li...> - 2010-01-21 01:05:27
|
Hi,
As you adviced me, I have tried to catch a RuntimeException before the execSelect call, but I have no success.
Here is the Java Code I want to transform to PHP code with PHP/Java Bridge:
import de.fuberlin.wiwiss.d2rq.*;
import com.hp.hpl.jena.query.*;
class pruebaSPARQL{
public pruebaSPARQL()
{
super();
}
public static void main(String argv[])
{
// Load mapping file
ModelD2RQ m = new ModelD2RQ("D:/DOCUMENTOS/alejandro/Maestria/tesis/egresados/herramientas/d2r-server-0.7/mapvariasLapOnto.n3");
String sparql =
"PREFIX onto: <http://localhost/egresados/site/egresado.owl#>" +
"PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>" +
"SELECT DISTINCT ?carrera WHERE {" +
" ?egresado onto:Carrera ?carrera . " +
"}";
Query q = QueryFactory.create(sparql);
ResultSet rs = QueryExecutionFactory.create(q, m).execSelect();
while (rs.hasNext()) {
QuerySolution row = rs.nextSolution();
System.out.println("Carrera: " + row.getLiteral("carrera").getString());
}
}
}
According to "http://jena.sourceforge.net/ARQ/javadoc/com/hp/hpl/jena/query/package-summary.html", QueryExecutionFactory.create(q, m) returns a QueryExecution Java interface and the execSelect() call should returns a ResultSet Java interface.
Is there (with PHP/Java Bridge) any special thing I have to consider when I work with Java interfaces rather than classes?.
Here is what I have tried with PHP/Java Bridge.
<?php
define ("JAVA_PREFER_VALUES", true);
require_once("http://localhost:8080/egresados/java/Java.inc");
class PRUEBA
{
public function execute()
{
$java_library_path = "D:\\DOCUMENTOS\\alejandro\\Maestria\\tesis\\egresados\\herramientas\\Jena-2.6.2\\lib\\;D:\\DOCUMENTOS\\alejandro\\Maestria\\tesis\\egresados\\herramientas\\d2r-server-0.7\\lib\\";
try {
java_require($java_library_path);
$modelD2RQ = new Java("de.fuberlin.wiwiss.d2rq.ModelD2RQ", "D:\\DOCUMENTOS\\alejandro\\Maestria\\tesis\\egresados\\herramientas\\d2r-server-0.7\\mapvariasLapOnto.n3");
$sparqlString = htmlentities("PREFIX onto: <http://localhost/egresados/site/egresado.owl#>" .
"PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>" .
"SELECT DISTINCT ?carrera WHERE {" .
" ?egresado onto:Carrera ?carrera . " .
"}");
echo $sparqlString;
$query = Java("com.hp.hpl.jena.query.QueryFactory")->create($sparqlString);
$rs = Java("com.hp.hpl.jena.query.QueryExecutionFactory")->create($query, $modelD2RQ)->execSelect();
/*while($rs.hasNext()){
//$row = new java("com.hp.hpl.jena.query.QuerySolution");
$row = $rs.nextSolution();
echo $row.getLiteral("carrera").getString();
}*/
}catch (JavaException $ex) {
$trace = new Java("java.io.ByteArrayOutputStream");
$ex->printStackTrace(new Java("java.io.PrintStream", $trace));
print "java stack trace: $trace\n";
}
}
}
?>
Sincerly, thank you very much.
> Date: Sun, 17 Jan 2010 20:18:14 +0100
> To: php...@li...
> From: php...@li...
> Subject: Re: [Php-java-bridge-users] Help
>
> Hi,
>
> like other containers (EJB for example), the PHP/Java Bridge container
> terminates the current transaction if a java.lang.RuntimeException or
> java.lang.Error crosses the container boundary. However, it does not
> terminate it immediately, to give you a chance to clear the error condition
> before the PHP script terminates.
>
> Please see
> http://php-java-bridge.sourceforge.net/pjb/docs/php-api/JavaBridge/_JavaProxy.inc.html#functionjava_last_exception_clear
> for details.
>
> Please see our FAQ entry "Why doesn't the bridge throw a
> java.lang.RuntimeException or Error as a PHP JavaException by default?"
>
>
> > [[o:Response$
> > UndeclaredThrowableErrorMarker]]->execSelect. Cause:
> > java.lang.NoSuchMethodException: execSelect(). Candidates: [] VM:
>
> please take a look at the error message again; your code:
>
> $query = Java("com.hp.hpl.jena.query.QueryFactory")->create($sparqlString);
> //---OK.
>
> has thrown a java.lang.Error or java.lang.RuntimeException, which is
> reported as a PHP warning. In the next step you ignore the warning, take the
> RuntimeException and try to invoke execSelect() on it, which fails, of
> course.
>
> If you want java.lang.Error and java.lang.RuntimeException to fail fast,
> define("JAVA_PREFER_VALUES", true) before including Java.inc.
>
>
> Regards,
> Jost Boekemeier
> ------------------------------------------------------------------------------
> Throughout its 18-year history, RSA Conference consistently attracts the
> world's best and brightest in the field, creating opportunities for Conference
> attendees to learn about information security's most important issues through
> interactions with peers, luminaries and emerging and established companies.
> http://p.sf.net/sfu/rsaconf-dev2dev
> _______________________________________________
> php-java-bridge-users mailing list
> php...@li...
> https://lists.sourceforge.net/lists/listinfo/php-java-bridge-users
_________________________________________________________________
Juega y gana con Samsung y Windows Live
http://www.equipatucasa.com.mx
|