kiran srilanka

Greenhorn
+ Follow
since Apr 29, 2014
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by kiran srilanka

Hi,

I am trying to implement wsrp between weblogic and websphere where weblogic 10.3.4 is the producer and websphere 6.1 is the consumer. I have created weblogic portlet which displays the logged in user details like remote user, authentication type princpal name.
When i consume the portlet through websphere portal admin console, getting the remote user name and authentication type as FORM but the principal name is returning null.

Here is my producer portlet code:

package com.demo.portal.portlet.supersnoop;


import java.io.IOException;
import java.io.PrintWriter;

import javax.portlet.GenericPortlet;
import javax.portlet.PortletException;
import javax.portlet.RenderRequest;
import javax.portlet.RenderResponse;

/**
* SuperSnoopPortlet
*/
public class SuperSnoopPortlet extends GenericPortlet implements Version{

/**
* @see javax.portlet.GenericPortlet#doView(RenderRequest, RenderResponse)
*/
protected void doView(RenderRequest req, RenderResponse resp) throws PortletException, IOException {
resp.setContentType(req.getResponseContentType());

PrintWriter out = new PrintWriter(resp.getWriter());

String remoteUser = req.getRemoteUser();
String authentication = req.getAuthType();
String principalName = (request.getUserPrincipal() == null)
? null
: request.getUserPrincipal().getName();


out.println("<h3>User Attributes</h3>");

out.println(remoteUser);
out.println(authentication );
out.println(principalName );

}


I couldn't find anything on web, Is there a way to fix this issue? Can some one help me with this ?


Thanks,
Kiran.



9 years ago