ME_Bank_Support
12 years agoOccasional Contributor
How to access external Jar files through SoapUI Pro
Hello
I got a Java key store Utility which generated a hash password for any given string. the following are the Jar files
Below are list of jar files to be used.
1. jksgenerator.jar (for key store generation)
2. security.jar (for encrypt/decrypt the password)
3. commons-codec-1.6.jar (security.jar is dependant)
This is the utility used to encrypt and decrypt the required clear text in any application.
Usage of security.jar in PEGA
Use TDesSecUtil utility to encrypt and decrypt as mentioned below.
Get the instance of the TDesSecUtil like below
TDesSecUtil secUtil = TDesSecUtil.getInstance();
Use the instance of the TDesSecUtil for encryption and decryption as below.
secUtil.encrypt("123456789")
secUtil.decrypt("hhXMHgOVosJ3PDyLEkPCVg==")
I want use this above utility in SoapUI. I got a test suit in SoapUI which need this Sec Utility.
where i need to keep this Jar files in SoapUI
How to call this functions in SoapUI
Do i need to create a WSDL to use the above Functions Encrypt and decrypt as operations.
Can some explain me in detail how can i acheive this.
I got a Java key store Utility which generated a hash password for any given string. the following are the Jar files
Below are list of jar files to be used.
1. jksgenerator.jar (for key store generation)
2. security.jar (for encrypt/decrypt the password)
3. commons-codec-1.6.jar (security.jar is dependant)
This is the utility used to encrypt and decrypt the required clear text in any application.
Usage of security.jar in PEGA
Use TDesSecUtil utility to encrypt and decrypt as mentioned below.
Get the instance of the TDesSecUtil like below
TDesSecUtil secUtil = TDesSecUtil.getInstance();
Use the instance of the TDesSecUtil for encryption and decryption as below.
secUtil.encrypt("123456789")
secUtil.decrypt("hhXMHgOVosJ3PDyLEkPCVg==")
I want use this above utility in SoapUI. I got a test suit in SoapUI which need this Sec Utility.
where i need to keep this Jar files in SoapUI
How to call this functions in SoapUI
Do i need to create a WSDL to use the above Functions Encrypt and decrypt as operations.
Can some explain me in detail how can i acheive this.