Hi All
I am converting a legacy as ASP page to JSP...
I have the following scriptlet in ASP which is invoking QARun product
..
<Script type="text/vbscript")>
'Invoke QARun
set shl=CreateObject("Wscript.Shell")
Command="runawl.exe -user: 'Global,admin,admin' -runenv:'systest'" &
chr(34) & "Master" & chr(34)
shl.Run Command
Selection_Execute.action="Testscript_Filters.asp?Values=1"
Selection_Execute.submit
</Script>
Can you please tell me how this can be done in Java/JSP
Thanks
Tim B - 10 Nov 2006 06:24 GMT
> Hi All
>
[quoted text clipped - 15 lines]
>
> Thanks
Exactly the same way, one would think. The ASP creates an html page that
contains the vbscript. JSP can do the same thing.