Nicola,
we don't officially support that java commandline client
GlobusRun. But you might get more information about what
happens if you modify the code in GlobusRun.java a bit
and rebuild and redeploy it:
Try to replace
String errorMessage =
"Unable to parse RSL from file " + rslFile;
logger.debug(errorMessage, e);
printError(errorMessage + " - " + e.getMessage());
by
String errorMessage =
"Unable to parse RSL from file " + rslFile;
logger.error(errorMessage, e);
e.printStackTrace();
printError(errorMessage + " - " + e.getMessage());
and see if you get more details then.
I'm currently not sure if the output of e.printStackTrace()
that's printed to the error output stream ends up in
the tomcat log.
Martin
> Hello,
>
> I managed to run GlobusRun.java codes taken from
> GT4-all-source bundle.
>
> I want to run the same program in Tomcat through JSP.
> I declare the rslFile in the same code (e.g.: File
> rslFile = new File("/tmp/job.xml")). The program runs
> successfully when run via command-line.
>
> When i run it through TOmcat, i got this error (from
> catalina.out): "Unable to parse RSL from file
> /tmp/job.xml". After the error, Tomcat shuts down.
>
> Any hints??
>
>
>
> __________________________________________________
> Do You Yahoo!?
> Tired of spam? Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
>
>