I posted this over in the Java SDK space, but didn't get any answers so I thought I'd try here.....
I have a client who is upgrading from 3.1 to 4.0 SP8. In 3.1 they have custom code for accessing InfoView and OpenDocument from their CRM application. This code, which runs under Tomcat on the BO web server, takes in a Base64 encoded user ID, decodes it, and then passes it in a session variable to the InfoView login screen which is configured for SSO using Trusted Authentication. The code is actually very simple - less than 20 lines. I'm trying to use the custom.jsp files from both com.businessobjects.webpath.InfoView.jar and com.businessobjects.webpath.OpenDocument.jar as outlined in the OEM Customization Guide for handling this requirement.
The problem I'm running into is that the client is using commons-codec-1.4.jar to do the Base64 encoding/decoding of the user ID. This .jar file is not part of the standard library files that are part of BO. I can't find where to put this so that it can be "seen" from custom.jsp. For testing purposes, I've put it in the webapps\BOE\eclipse\plugins\webpath.InfoView\web\WEB-INF\lib folders under both tomcat and work\Catalina\localhost, but that didn't work. I've also tried putting it in the lib folder under tomcat and in the same folder as custom.jsp, but still no luck.
Can anyone point me to where this .jar file needs to go so that I can get this process working?
Thanks!
-Dell