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) |
|
2
(4) |
3
(3) |
4
(2) |
5
(5) |
6
(2) |
7
(2) |
8
(2) |
|
9
|
10
(2) |
11
(2) |
12
(1) |
13
(5) |
14
(1) |
15
|
|
16
|
17
(1) |
18
|
19
|
20
(2) |
21
(2) |
22
|
|
23
|
24
(1) |
25
|
26
|
27
(3) |
28
(4) |
29
(4) |
|
30
(1) |
31
(1) |
|
|
|
|
|
|
From: Scott P. <sc...@go...> - 2005-10-07 23:10:32
|
Fantastic package! Nice work everyone. A question about building a hybrid application using both JSP and PHP. It seems like the bridge supports all of these options: 1. Run Apache as the front-end. It runs PHP pages natively, and uses connector to run JSP's. Bridge can talk back to the Java end. 2. Run Tomcat as the front-end, and it serves both JSP's and PHP pages. This seems amazing, but the JavaBridge.war seems to be able to run PHP pages. But is it doing this by exec'ing the php interpreter, or actually calling back to Apache through the bridge. The example showing how to share JSP and PHP session seems to use this model. Is my analysis correct? Now, considering option 1 (Apache front-end): a. Can we share PHP and JSP sessions with this deployment? I'm unclear how JSP sessions are handled when using the Apache java connector. b. Can my PHP page running in Apache actually talk through the bridge to a webapp deployed on Tomcat? Basically I need to get to objects in the ServletContext. I see the j2ee example on how to connect to an EJB, but I'm not using any EJB's or remote objects. |
|
From: Bharath T. <bh...@mv...> - 2005-10-07 17:51:21
|
I have been trying to integrate the jni wrapper application of Verisigns
pfpro with my java app. When the app is deployed on apache I get the
following exception . I see that the same app works fine in tomcat
deployment(The app could be deployed on tomcat and apache without any
modifications which gives us the flexibility to test both). The dlls
exist in C:/Windows. Any idea?
java.lang.UnsatisfiedLinkError: Native library pfprojni could not be
found in java_require() path.
at
php.java.bridge.DynamicJavaBridgeClassLoader.resolveLibraryName(DynamicJ
avaBridgeClassLoader.java:186)
at
php.java.bridge.DynamicJavaBridgeClassLoader$1$2.findLibrary(DynamicJava
BridgeClassLoader.java:210)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1488)
at java.lang.Runtime.loadLibrary0(Runtime.java:788)
at java.lang.System.loadLibrary(System.java:834)
at com.Verisign.payment.PFProAPI.<clinit>(PFProAPI.java:91)
at
com.apostek.subscription.Gateway.processTransaction(Gateway.java:115)
at
com.apostek.subscription.TransactionService.ProcessSale(TransactionServi
ce.java:134)
at
com.apostek.subscription.SubscriptionService.createSubscription(Subscrip
tionService.java:140)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav
a:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor
Impl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at php.java.bridge.JavaBridge.Invoke(JavaBridge.java:1137)
at php.java.bridge.Request.handleRequest(Request.java:204)
at php.java.bridge.Request.handleRequests(Request.java:221)
at php.java.bridge.JavaBridge.run(JavaBridge.java:233)
at php.java.bridge.ThreadPool$Delegate.run(ThreadPool.java:20)
Here is the snippet of code that is causing the problem
java_require("antlr-2.7.5H3.jar;apostek.jar;asm.jar;asm-attrs.jar;cglib-
2.1.jar;commons-collections-2.1.1.jar;commons-collections-3.1.jar;common
s-dbcp-1.2.1.jar;commons-lang-2.0.jar;commons-logging-1.0.4.jar;commons-
pool-1.2.jar;dom4j-full.jar;ehcache-1.1.jar;hibernate3.jar;imap.jar;Java
Bridge.jar;jta.jar;log4j.jar;mailapi.jar;mysql-connector-java-3.1.10-bin
.jar;pop3.jar;smtp.jar;Verisign.jar;file:///C:/windows;");
=20
print "adding the subscription";
try {
$amt =3D 10.00;
=09
$jcl_System =3D new JavaClass("java.lang.System");
$startDate =3D new java("java.sql.Date",
$jcl_System->currentTimeMillis());
$endDate =3D new java("java.sql.Date",
$jcl_System->currentTimeMillis());
$endDate->setYear($endDate->getYear()+1);
=09
$jcl_sysController =3D new
JavaClass("com.apostek.service.SysController");
$jobj_serviceManager =3D $jcl_sysController->getInstance();
$jobj_repository =3D $jobj_serviceManager->getRepository();
$jobj_subService =3D $jobj_serviceManager->getSubscriptionService();
=20
$jobj_repository->begin(new java("java.lang.Boolean", false));
=09
$jcl_txInitiator =3D new
JavaClass("com.apostek.subscription.TransactionInitiator");
$result =3D $jobj_subService->createSubscription("bh...@xx...", new
Java("java.lang.Float", $amt), $startDate, $endDate,
$jcl_txInitiator->USER);
$jobj_repository->commit();
=09
print $result->getMessage();
}
catch(JavaException $ex) {
=20
$jobj_stringWriter =3D new java("java.io.StringWriter");
$jobj_printWriter =3D new java("java.io.PrintWriter",
$jobj_stringWriter);
$ex->printStackTrace($jobj_printWriter);
print ($jobj_stringWriter->toString()); =20
}
=20
catch (Exception $e) {
// most likely an exception from a third-party library
$jobj_stringWriter =3D new java("java.io.StringWriter");
$jobj_printWriter =3D new java("java.io.PrintWriter",
$jobj_stringWriter);
$e->printStackTrace($jobj_printWriter);
print ($jobj_stringWriter->toString()); =20
}
|