Topic Options
Rate This Topic
#140494 - 08/20/08 12:19 PM Java Plug-in Issues
Jeff__ Offline
Just Signed Up

Registered: 07/01/08
Posts: 2
I'm writing a Java ARDBC plug-in (7.1.00 P4) and while it mostly works, I get some errors in my log, and it sometimes hangs.

One error is
org.acplt.oncrpc.OncRpcAuthenticationException: ONC/RPC authentification error

I've checked that my plug-in name, ar.conf and .xml files all list the name of the plug-in the same way. However it does this on every search. This error doesn't lock the system.

A second is
2008-08-20 13:36:31,192 ERROR [TCP server transport connection thread] com.bmc.arsys.pluginsvr.c.a (?:?) - Data decryption error encountered
com.bmc.arsys.arencrypt.AREncryptionException: javax.crypto.BadPaddingException: Given final block not properly padded
..
This error only occurs the second time I run the plug-in. Then it hangs it

Any suggestions?

Thanks,

Jeff

Top
#140656 - 09/17/08 08:12 AM Re: Java Plug-in Issues [Re: Jeff__]
Jeff__ Offline
Just Signed Up

Registered: 07/01/08
Posts: 2
This appears to a problem with encryption which isn’t needed in my case anyway since all things run on the same server.

In pluginsvr_config.xml turn off encryption with
<encryptionPolicy>2</encryptionPolicy>

The lock-ups and errors now go away.

Top