Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

related to upload the java program in sap application server and trigger it with command

rishi_kulkarni123
Participant
0 Likes
1,042

hello sir/madam/friend,

actually i am making a program related to digital signature in which i have created a JAVA program through which i can apply the digital signature but i am not getting way to upload it on application server and also how to create command to trigger this JAVA code.

so i request you to please help me regarding this.

And if anyone has a different way to achieve digital signature then please suggest

1 REPLY 1
Read only

michael_piesche
Active Contributor
0 Likes
702

1) When dealing with digital signatures, how come you have not looked into onboard tools?

You can use digital signatures and document encryption in your application to provide document security: Secure Store and Forward Mechanism (SSF)

You will need the SAPCRYPTOLIB installed on your application server, depending on your SAP ABAP version, it might be already installed.

ABAP Function Modules of the SSFG Function Group:

  • SSF_SIGN / SSF_KRN_SIGN Creating digital signatures
  • SSF_VERIFY / SSF_KRN_VERIFY Checking digital signatures
  • SSF_ENVELOPE / SSF_KRN_ENVELOPE Encrypting documents
  • SSF_DEVELOPE / SSF_KRN_DEVELOPE Decrypting documents

2) Using SAP Jco to connect ABAP with Java

If you want to call custom Java Code from ABAP, you will have to make use of the SAP Java-Connector (SAP JCo).

  • You can either call a Non-SAP Java-Application that implements the JCO and call it by RFC
  • Or you can call a SAP Java Application through Jco/JRA calling it by RFC

SAP Jco/JRA for SAP Java Applications

  • If you want to stay with a SAP product and call custom Java Code from ABAP, you will have to look into "SAP NetWeaver Application Server for Java (AS Java)" and use "SAP Java Resource Adapter (SAP JRA)" with remote SAP Java EE application servers. SAP JRA is an add-on to the SAP Java-Connector (SAP JCo): SAP JRA Server Programming Model
  • Developing can be done, for example, in "SAP NetWeaver Developer Studio" or Eclipse.