Venkat Suryadevara

Greenhorn
+ Follow
since May 12, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Venkat Suryadevara

it supports JDOM too.Anyways, I am seriously looking for a simple example where XPath on top of JDOM
Can you provide me with an example??
I am a beginner looking into JDOM and XPath.
I need a small little easy example to run and see how XPath on top of JDOM works.
I have a Java program.I am calling it through a batch file.This batch file is called through CGI of the web server.I am unable to get any STDOUT or STDERR....
Can anyone help me??
21 years ago
I am making the question very clear.
I have a batch file.It calls a java program
call java myprogram.java
I am running this batch file from CGI of the web server.I am unable to see the output
21 years ago
no..it's windows web server....
21 years ago
thanks for a solution.but...
I am calling the batch file from my web server.The solution you gave is working when I run the same program from cmd prompt but It's not working when I try to run from my webserver.Please help
21 years ago
I am trying to run the same program from my webserver but I am unable to capture the output.
what should I do to get that?
echo ^<html^>^<body^>
echo hello^<br^>
setlocal
set JDK=C:\j2sdk1.4.1_01
PATH=%JDK%\bin;.;%PATH%
set CLASSPATH=%JDK%\jre\lib\*.jar;.;%JDK%\jre\lib\ext\*.jar;.;%CLASSPATH%
echo there goes the java file ^<BR^>
java -cp c:\j2sdk1.4.1_01\jre\lib*.jar;c:\j2sdk1.4.1_01\bin; spiderpackage.EntryPoint -v
echo passed it
endlocal
echo ^</body^>^</html^>
21 years ago
I am unable to run a java program from a batch file that i created.spiderpackage.EntryPoint is a class file which I am trying to run with a -v option to output something.What should I do to get the output?

echo ^<html^>^<body^>
echo hello^<br^>
call java spiderpackage.EntryPoint -v
echo ^</body^>^</html^>
21 years ago
I am unable to run a java program from a batch file that i created.
spiderpackage.EntryPoint is a class file which I am trying to run with a -v option to output something.what should I do to get the output to a file???

echo ^<html^>^<body^>
echo hello^<br^>
call java spiderpackage.EntryPoint
echo ^</body^>^</html^>
21 years ago