Started 1 week, 1 day ago (2009-11-27 08:40:00)
by ChrisBailey
Hi Kate:
That class should be in jre\lib\ibmcertpathfw.jar. Can you confirm that you have the .
jar file there and that it contains the class?
Started 1 week ago (2009-11-28 09:52:00)
by brataj
You might try JZOS instead of rolling your own:
http://www.ibm.com/servers/eserver/zseries/softwa re/java/products/jzos/overview.html
Started 1 day, 19 hours ago (2009-12-04 05:54:00)
by Ben Hardill
Hi,
We are going to need a lot more information to be able to help.
Things like:
1) What errors are you seeing?
2) How are you deploying the Oracle libraries? Are they in the application EAR?
3) What
classloader search policy are you using (parent last, or default parent first)
Ben Hardill
Started 1 day, 18 hours ago (2009-12-04 06:39:00)
by Ben Hardill
Hi,
Can you let me know which SR of 6.0 you are Having problems with? (java -version output)
The following little test works for SR5 and SR6
import javax.script.*;
public class JavaScriptTest {
public static
void main(String[] args) throws Exception {
ScriptEngineManager factory = new ScriptEngineManager();
ScriptEngine engine = factory....
Started 1 day, 20 hours ago (2009-12-04 05:19:00)
by Ben Hardill
Hi,
Do you really mean the 1.4.0
JRE? 1.4.0 is incredibly old and has been out of all support for a long time having been replaced by both 1.4.1 and then 1.4.2.
I would expect all the certificates in the 1.4.0 release to have expired by now.
Assuming you are actually using an up to date version 1.4.2 and still need to import the cert then run something like the following ...
Started 1 day, 5 hours ago (2009-12-04 20:19:00)
by brataj
Hi Wendell,
If you're going to load your native code from a PDS(E), you need to create an
external link with the name that Java likes that points to the member name in the MVS search order.
Thus to do a System.loadLibrary("foobar") that loads member FOOBAR from the STEPLIB for example, you need to have in your LIBPATH the directory in which you created the external link
ln -e...