cancel
Showing results for 
Search instead for 
Did you mean: 

Access UME located in different servers?

Former Member
0 Kudos

Hi

Our Portal and Java Application are located on different servers and

both have their own UME.

 

We tried to use UME API but we got an issue.

Here is my code.

        IUserFactory userFactory = UMFactory.getUserFactory();

        IUserSearchFilter filter;

       

        try {

            filter = userFactory.getUserSearchFilter();

            filter.setLastName("Test*", ISearchAttribute.LIKE_OPERATOR, false);

           

            ISearchResult thisSearchResult = userFactory.searchUsers(filter);

            .

            .

            .

        }

When we used UME API in Java application, we found that the program

looked for data in UME of the Java Server, but we want it to search

data in Portal  UME.

It seems like UME API only access the UME in the server the program is

located. We've not found any API to specify the UME in a different

server.

Can we specify the UME location to search?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

No you can't. In order to access a remote UME you will have to either use the existing UME Web Service implementation or implement one yourself.