steve nacosta

Greenhorn
+ Follow
since Nov 11, 2009
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by steve nacosta

hello all,
i am starting the weblogic 8.1.6.
and getting following exception.
please help me out with the problem.
its urgent...!!!

weblogic.security.internal.encryption.EncryptionServiceException - with nested exception:
[com.rsa.jsafe.JSAFE_PaddingException: Could not perform unpadding: invalid pad byte.]
at weblogic.security.internal.encryption.JSafeEncryptionServiceImpl.decryptBytes(JSafeEncryptionServiceImpl.java:77)
at weblogic.security.internal.encryption.JSafeEncryptionServiceImpl.decryptString(JSafeEncryptionServiceImpl.java:93)
at weblogic.security.internal.encryption.ClearOrEncryptedService.decrypt(ClearOrEncryptedService.java:56)
at weblogic.management.EncryptionHelper.decryptString(EncryptionHelper.java:45)
at weblogic.ldap.EmbeddedLDAP.initServerConfig(EmbeddedLDAP.java:1147)
at weblogic.ldap.EmbeddedLDAP.initialize(EmbeddedLDAP.java:231)
at weblogic.t3.srvr.T3Srvr.initializeHere(T3Srvr.java:815)
at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:669)
at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:343)
at weblogic.Server.main(Server.java:32)
>
<Mar 15, 2010 12:00:41 PM IST> <Emergency> <WebLogicServer> <BEA-000342> <Unable to initialize the server:
weblogic.security.internal.encryption.EncryptionServiceException - with nested exception:
[com.rsa.jsafe.JSAFE_PaddingException: Could not perform unpadding: invalid pad byte.]>
***************************************************************************
The WebLogic Server did not start up properly.
com.rsa.jsafe.JSAFE_PaddingException: Could not perform unpadding: invalid pad byte.
at com.rsa.jsafe.JA_PKCS5Padding.a(Unknown Source)
at com.rsa.jsafe.JG_BlockCipher.decryptFinal(Unknown Source)
at weblogic.security.internal.encryption.JSafeEncryptionServiceImpl.decryptBytes(JSafeEncryptionServiceImpl.java:67)
at weblogic.security.internal.encryption.JSafeEncryptionServiceImpl.decryptString(JSafeEncryptionServiceImpl.java:93)
at weblogic.security.internal.encryption.ClearOrEncryptedService.decrypt(ClearOrEncryptedService.java:56)
at weblogic.management.EncryptionHelper.decryptString(EncryptionHelper.java:45)
at weblogic.ldap.EmbeddedLDAP.initServerConfig(EmbeddedLDAP.java:1147)
at weblogic.ldap.EmbeddedLDAP.initialize(EmbeddedLDAP.java:231)
at weblogic.t3.srvr.T3Srvr.initializeHere(T3Srvr.java:815)
at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:669)
at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:343)
at weblogic.Server.main(Server.java:32)
--------------- nested within: ------------------
weblogic.security.internal.encryption.EncryptionServiceException - with nested exception:
[com.rsa.jsafe.JSAFE_PaddingException: Could not perform unpadding: invalid pad byte.]
at weblogic.security.internal.encryption.JSafeEncryptionServiceImpl.decryptBytes(JSafeEncryptionServiceImpl.java:77)
at weblogic.security.internal.encryption.JSafeEncryptionServiceImpl.decryptString(JSafeEncryptionServiceImpl.java:93)
at weblogic.security.internal.encryption.ClearOrEncryptedService.decrypt(ClearOrEncryptedService.java:56)
at weblogic.management.EncryptionHelper.decryptString(EncryptionHelper.java:45)
at weblogic.ldap.EmbeddedLDAP.initServerConfig(EmbeddedLDAP.java:1147)
at weblogic.ldap.EmbeddedLDAP.initialize(EmbeddedLDAP.java:231)
at weblogic.t3.srvr.T3Srvr.initializeHere(T3Srvr.java:815)



Thanks in advance...!!
14 years ago
ok i'll do it.

Thanks...
14 years ago
surely it is.. :D

thank you all :jumpingjoy:

Bear Bibeault wrote:If you don't want the encoded value, why are you encoding it?



thanks for your reply.

actually without encoding i am getting the string that is even worst...

never the less,i managed to make some function which convert %2F --> '/' .





14 years ago

David Newton wrote:Er, you're not using source control?



actually i am using it.
but i didn't commit the files b4 delete,
and the files were modified.

eventually i got those files back.

Freddy Wong wrote:Right click on the project and click Restore From Local History.



Thanks For your reply

You really saved my important files.



hi,

i am working on web-project using Eclipse IDE and glassfish application server.
unfortunately i deleted some servlet file from Elipse IDE,
i want those servlet file back,


please help...!!!

Thanks in advance.
hi,

i am receiving some request from other servlet,

url in the browser shows,
http://localhost:8080/....../DemoServlet?sign=q4ZuW4ubPu2axXcAj9kHy%2B3cKHIxXfStgyFTw5/cNKlr5%2B%2B%2BK/LI68QxDYqOVHUoV&exp=05/2015&.....


i want the 'sign' parameter value in my servlet as its shown in url which is,
"q4ZuW4ubPu2axXcAj9kHy%2B3cKHIxXfStgyFTw5/cNKlr5%2B%2B%2BK/LI68QxDYqOVHUoV"


now in my servlet DemoServlet, i am trying to get the 'sign' parameter value,
String sign=URLEncoder.encode(request.getParameter("sign"),"UTF-8");

which actually assign sign="q4ZuW4ubPu2axXcAj9kHy%2B3cKHIxXfStgyFTw5%2FcNKlr5%2B%2B%2BK%2FLI68QxDYqOVHUoV"

that is the value that i don't want,
the difference in url and string is all the '/' are in form of hexa value '%2F',

how can i get the correct value,
please suggest.


-Thanks

14 years ago