Skip to main content

Troubleshooting integrating WebSphere Portal with Facebook

portal title

Error: EJPAK0060W

The system received an external identifier which is not associated with a user identity within the WebSphere Portal user registry. Please associate the remote identity with a valid local user identity first.

Reason: 
It is because that an external user doesn't have an account with our local portal user. What you can do here is either you can associate an existing> user with that Facebook user or 
you can turn on transient users setting to enable to third party user login without account in portal. Check that the User account repository's current realm definition is Federated repositories and there is a base entry "o=transparent".

If problem exists in configuring the transient users then follow the solution provided.

Solution:
  1. If you are sure that you have followed every step from here, then it is a problem with your transient user. When you run the command “ConfigEngine.bat enable-transient-user -DWasUserId=wpsadmin -DWasPassword=passw0rd_123  -Dtransparent.suffix=o=transparent1 -Dtransparent.prefix=cn “, you will see that the build actually failed. This happens because of the fact that you cannot create with the same suffix. Hence you need to disable the transient user and then enable him so that only one suffix is present.
  2. Run this “ConfigEngine.bat disable-transient-user -DWasUserId=wpsadmin -DWasPassword=passw0rd_123” at wp_profile root/ConfigEngine in cmd.
  3. Run this “ConfigEngine.bat enable-transient-user -DWasUserId=wpsadmin -DWasPassword=passw0rd_123  -Dtransparent.suffix=o=transparent1 -Dtransparent.prefix=cn” at wp_profile root/ConfigEngine in cmd.

screenshot

This would set things alright. Please feel free to comment if you have any doubts regarding this or any feedback is highly appreciated.

Comments

  1. I started on COPD Herbal treatment from Ultimate Life Clinic, the treatment worked incredibly for my lungs condition. I used the herbal treatment for almost 4 months, it reversed my COPD. My severe shortness of breath, dry cough, chest tightness gradually disappeared. Reach Ultimate Life Clinic via their website www.ultimatelifeclinic.com . I can breath much better and It feels comfortable!

    ReplyDelete

Post a Comment

Popular posts from this blog

Trip to narsipura Sri Vaidya Narayana murthy - Shimago for cancer treatment

Hi friends. I would like to share my experience about my trip to Shimago and meet Guru Narayana murthy who would treat for cancer, diabetics, kidney diseases. My brother was diagnosed with rectal cancer on October 2014. The news of cancer to a young boy of 26 years shook our whole family. But we are strong as he was getting treatment from world class care clinic in Cleveland - Cleveland clinic, Ohio, USA. As fate had other plans, his cancer came in January, 2017 back after an extensive surgery, chemotherapy and radiotherapy. The doctors made a decision to keep him in hospice care: support for advanced illness. They said that there is no more treatment and only to keep him comfortable as long as he lives, we lost our hopes and that is when we thought of giving a try to Ayurvedic medicine. We found Guruji narasipura narayana murthy. His medicine gave us hopes and I recently went to narsipura to get the medicine. I thought it would be best to give my share of experience in reaching the

Solution to "child margin affects parent" in CSS

The browser implementation is that when the parent has no content and the child requests for margin, the parent is brought down instead of child going down. The solution for these are listed below with their side effects. floats , You  have  to float elements border-top , This pushes the parent at least 1px downwards which should then be adjusted with introducing  -1px  margin to the parent element itself. This can create problems when parent already has  margin-top  in relative units. padding-top , same effect as using  border-top overflow: hidden , Can't be used when parent should display overflowing content, like a drop down menu overflow: auto , Introduces scrollbars for parent element that has (intentionally) overflowing content (like shadows or tool tip's triangle) See the Pen Relative with Margin by Manikanta ( @immnk ) on CodePen .

Redirection in javascript

How Page Re-direction works ? Example 1: This is very simple to do a page redirect using JavaScript at client side. To redirect your site visitors to a new page, you just need to add a line in your head section as follows: <head> <script type="text/javascript"> <!-- window.location="http://www.newlocation.com"; --> </script> </head> To understand it in better way you can  Try it yourself . Example 2: You can show an appropriate message to your site visitors before redirecting them to a new page. This would need a bit time delay to load a new page. Following is the simple example to implement the same: <head> <script type="text/javascript"> <!-- function Redirect() { window.location="http://www.newlocation.com"; } document.write("You will be redirected to main page in 10 sec."); setTimeout('Redirect()', 10000); //--> </script> </head> Here