Access Manager 7.1 and Load Balancer?
Hi,
I'm having issue to configure Access Manager 7.1 in LB mode. I have donbe this on Access Manager 7.0 and t was pretty straightforward. But on this 7.1 I failed to add site ID to the servers list in Platform list. When I tried to save my changes, I got the error message:
Data validation failed for the attribute, Server List.
Has anyone seen this on Access Manager 7.1? Is there any patch I need to apply? Any information will be appreciated.
# 1
Hello,
This error occurs when you have entered invalid data in the platform server list.
Suppose your LB server name is:
Lb.sun.com
Add this line to site:
Lb.sun.com|01
Where ?1?is the LB site id
Now you have two servers with access manager installed:
Am01.sun.com
Am02.sun.com
In Platform list, map assign LB site ID to Platform
Am01.sun.com|02|01
Am02.sun.com|03|01
# 3
Hi ,
I have created dynamic tree .
I am parsing the Parent and Child nodes and constructing the tree.
I am using my own method treeSlectionHandler() for event handling for which i am using MethodBinding class and getCookieSelectedNode() method.
Here is the problem ,whenever I delete or add any node from/into database change did not reflected in the tree .
So I am using setTransient(true) which is able to reflect the database changes.
I have one JSP(tree page) with this tree and one button on this page .I am calling tree.setTransient(tree) inside button action.
Now I will delete one node from database.
So I will click the button then which will go to next page.
Again I will navigate to Tree page through menu.
If I click any node for the first time it will simply refresh the tree state as in the database (if 10 nodes in database it wil show 10)
But click action will not work (no check image set)
But for the very next click the click action works and check image is set.
So plz suggest me is there any other method to refresh the tree state ?
I want both tree refresh and click action happen simultaneously.
I will be thankful if any one suggests me the solution .