my dog learned polymorphism
The moose likes Portals and Portlets and the fly likes Solo state in Portal server Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Portals and Portlets
Reply Bookmark "Solo state in Portal server" Watch "Solo state in Portal server" New topic
Author

Solo state in Portal server

Dhiren Joshi
Ranch Hand

Joined: Dec 09, 2003
Posts: 463
Does any one know how I can be assured of moving into a solo state.
I read up on info on IBM sites and the only information is that if I set portletWindowState="solo" and click that link, I would push portlet into solo state. That does not seem to be happening.

<h3>Your <a <br /> page.finance" rel="nofollow">
<% wpsURL.write(out); %>
</wps:urlGeneration>">Statement of Account
includes:</h3>


then my portlet checks if portlet is in solo state.
But this value always returns back a false.

/**
* @param request
* @return
* $A1
*/
public boolean checkSoloMode(RenderRequest request) {
boolean isSoloMode= false;
request.getWindowState();
System.out.println(" THE WINDOW STATE IN PORTLET="+request.getWindowState());
if (request.getWindowState().equals("solo")) {
isSoloMode=true;
}
return isSoloMode;
}


Is this an incorrect way of checking solo State in Portlet.

Thanks
Dhiren
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Solo state in Portal server
 
Similar Threads
Return ONLY the contnet of a portlet
How to filter Authentication Relam
portlet:actionURL-please help
Not able to send data from one struts portlet to another struts portlet
Custom Portlet modes