You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|
|
From: Gordon_Erlebacher <erl...@sc...> - 2006-04-07 13:42:32
|
Hi,
I have executed the following simple program and so have several of my
collaborators, using the latest
version of the CogKit: 4.1.3 . The return from TaskImpl() is null!!!
How can this be? Could someone
please test this code and confirm whether or not this is expected?
(actually do the test please).
Thanks.
Gordon
----------
import org.globus.cog.abstraction.interfaces.*;
import org.globus.cog.abstraction.impl.common.task.TaskImpl;
import org.globus.cog.abstraction.impl.common.taskgraph.TaskGraphImpl;
public class CogTest {
public CogTest() {
try {
TaskGraph taskgraph = new TaskGraphImpl();
Task task = new TaskImpl();
System.out.println("task = " + task);
System.out.println("taskgraph = " + taskgraph);
} catch (Exception e) {
}
}
public static void main(String[] arg) {
CogTest ct = new CogTest();
}
}
/*****
CP=.
for i in $CATALINA_HOME/shared/lib/*.jar
do
CP=$i:$CP
done
javac -classpath $CP CogTest.java
java -classpath $CP CogTest
****/
|