• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

web logic, java ee and third party app login/pass

We have a third party app. Lets call it Banana. Banana needs a username and password for us to log into it.

We need to Access Banana from a Java EE app.

The Java EE App is going to be hosted by Web Logic.

Is there a way for Web Logic to store the login/pass data and for our application to access that data?

So the login/password flow that I am in need of is:
Web Logic -> Java code (Java EE app)

I am trying to avoid writing my own encryption and using a flat file.
 
Why not just have a login in Java EE app and then send the credentials to banana? Storing them at a second place, especially unencrypted is a absolute no-go.

Ideally you have SSO but then yeah maybe banana doesn't even support that but doesn't hurt to ask supplier. Also maybe it has an API?
 
You have the entire Fusion Middleware platorm or just vanilla weblogic? FMW comes with a framework called the Credential Store. You store encrypted passwords in it and retrieve them through an api.

There's an administrative console for maintenance and rotation. And i think you can use the weblogic scripting tool if you need to update it from the command line, say if the port is blocked outside the app server.

edit: Just saw this thread is a month old. Man this sub is dead. Hope you got an answer already.😱
 
Last edited:
Back
Top