Welcome to the new Parasoft forums! We hope you will enjoy the site and try out some of the new features, like sharing an idea you may have for one of our products or following a category.
Static Analysis with *.jar and *.zip files ?
LegacyForum
Posts: 1,664 ✭✭
Hi,
Is there a way of performing static analysis with jar and zip files that contain jsp files ?
Is there a way of performing static analysis with jar and zip files that contain jsp files ?
0
Comments
-
Unfortunately, it is not currently possible to test the contents of zip or jar files in WebKing while they are zipped/jarred. A work-around would be to create a script that unzipped the files to a specific directory, then run WebKing from the script using the new directory as its source. For example, you might try:CODE
tar -xf foo.tar
webking -cmd -run myScript
where the contents of myScript would be:
CODEnewproject -local=foo
checkwebstandards
savereport -checkwebstandards mywebsite_code.rpt
closeproject0