MediaBin 4.5.3
I am trying to connect to MediaBin via web service with a simple Java application. The eventual execution location will be inside of the TeamSite content center application. I will already know the currently logged in TeamSite user, which uses an LDAP server to authenticate. Our MediaBin server leverages an Active Directory server to do its authentication.
We currently have not changed anything on the LDAP tab on the enterprise manager screen. Do we need to set this up for it to work?
Code snippet:
((Stub) service).setUsername("domain\\user");
((Stub) service).setPassword(service.createTrustedClientPassword("myhint"));
The error I am getting is the following:
Exception: Server was unable to process request. --> MBException: User: domain\user. The user logon failed. The user name or password may be invalid for the specified domain
Is there something else that needs to be done for this to work?