S
srinivas.veeranki
Hi All,
I made the jar signer using the following commands in the build.xml
<!-- For Signed Jars -->
<property name="alias" value="pluginsigner"/>
<property name="storepass" value="gis123"/>
And
<target name="sign" description="To sign the jars..." depends = "jar">
<signjar jar="${basedir}\DcvBuild\dcvclient.jar" alias="${alias}"
storepass="${storepass}"/>
</target>
It generates the signed jar successfully. But its not giving any
security to it. By using the decompiler I generated the jad file and
modified and saved that file as .java and recompiled generated source
file. I replaced the old .class file with new .class file. and made
the jar file. I replaced the old jar(signed) with new jar file. I am
to run my application with new jar file.
Is it possible to restrict the modification in the signed jar file.
and also my requirement is not to allow the application to run with
new jar. Is it possible.
Can you please suggest me. Thanks in advance...
Regards,
Srinivas.
I made the jar signer using the following commands in the build.xml
<!-- For Signed Jars -->
<property name="alias" value="pluginsigner"/>
<property name="storepass" value="gis123"/>
And
<target name="sign" description="To sign the jars..." depends = "jar">
<signjar jar="${basedir}\DcvBuild\dcvclient.jar" alias="${alias}"
storepass="${storepass}"/>
</target>
It generates the signed jar successfully. But its not giving any
security to it. By using the decompiler I generated the jad file and
modified and saved that file as .java and recompiled generated source
file. I replaced the old .class file with new .class file. and made
the jar file. I replaced the old jar(signed) with new jar file. I am
to run my application with new jar file.
Is it possible to restrict the modification in the signed jar file.
and also my requirement is not to allow the application to run with
new jar. Is it possible.
Can you please suggest me. Thanks in advance...
Regards,
Srinivas.