Portal Server (JES1 version)  and Trusted Solaris

Federal Sales Opportunites are demanding more and more that Sun move to "Trusted Solaris" Does anyone know if the Portal Server that ships with JES would actually work on Trustes Solaris 8
Any guidance would be greatly appreciated.
Thanks
Adam

hi sushmac,
I could start the portal server. basically it was a CACAO problem. I first checked whether my cacao was up or not. Actually the cacao was not up as I didn't had any JDMK home in my system . So, in the next step I downloaded SUNJDMK and then setted the jdmk home parameter for cacao as well as the Javahome parameter.. After this I rebuild the dependencies
by ./cacaoadm rebuild-dependencies
and started the cacaodm. using ./cacaoadm start
after that I could easily run the configuration examples.
thanks for ur help
I want some more details on cacao... from where can I get them..
thanks
dhawanmayur

Similar Messages

  • PORTAL SERVER 6.0 and Directory Server 5.1 existing

    I have one istance on sunone directory server 5.1 . I want install secure portal server 6.0 and i want use this directory server? . In the installation manual there are't this procedure.
    When I install the portal I select the installation with existing ldap and the portal server is installed . When I started the portal server this don't work.
    Thank's

    Go to Identity Server v5.1 documentation. It's well documented there. In two words, after you installed it this way, you have to apply 'existing.ldif' file to create ACIs and roles, then to create all services.
    Please check existing.ldif before you will apply it. Depending on your DIT, it may be quite broken. Don't forget to change ums.xml to match your schema.

  • Portal Server SP version#

    Hi ,
    How do I check that, the portal server's SP version?
    Thanks in advance.

    Hi,
    Pls go to System Administration -> Support -> SUpport Desk -> Version
    YOu could see the version
    Aneez
    Pls award points and close this thread if you are satisfied

  • JMS and Trusted Solaris

    I have also posted this on the Trusted Solaris Forum, but I figured someone here might have an idea too.
    Trusted Solaris 8 7/03 with application servers running at multiple classification levels. I can have single level producers and consumers communicate at each level, but I need a single consumer to be able to subscribe to topics at both levels.
    Thanks,
    Alan

    Within Trusted Solaris, a port is a triple(ip:port:classification), not a tuple (ip:port). There are mechanisms within the C API to trusted solaris to bind to a MLS port. This is doable because the process is actually able to process multiple levels of data, however the JVM is running at a single level and is unaware that it is running on a MLS operating system. I am looking for either a clean way to tell the JVM to connect to a polyinstantiated port (and be able to read data whose label is dominated) or to communicate to a JVM running at a different classification.

  • Portal Server 7.2 and Portlet

    Hi ,
    I have a serious problem with Portlet and Sun Portal 7.2
    I don't understand how I can retrive user information (like username,password, email..) from a portlet.
    I read about
    Map userInfoMap = (Map) request.getAttribute(PortletRequest.USER_INFO);but is always null.
    is a portlet.xml problem ?!?!
    thanks in advance.
    Alessandro
    Edited by: Peritus on Aug 6, 2008 2:08 AM

    You'll need something like the following in portlet.xml (the attribute names are from the spec):
    <user-attribute>
        <description>Given name of user.</description>
        <name>user.name.given</name>
    </user-attribute>
    <user-attribute>
        <description>Family name of user.</description>
        <name>user.name.family</name>
    </user-attribute>And something like the following in a users.properties file which is referenced when you deploy the portlet in Portal Server 7.2:
    givenName=user.name.given
    sn=user.name.familyWhat happens is the portal server manages the LDAP attribute to portal attribute mapping (eg, user.givenName in LDAP maps to user.name.given in portal) and the portlet container maps the attribute into the read-only USER_INFO map. I'm sure someone will correct my terminology, but it's something like that anyway. Check it out with an LDAP browser if you need to figure what's available in the Directory Server. The result is being able to call something like:
    Map userInfoMap = (Map) request.getAttribute(PortletRequest.USER_INFO);
    String firstName = (String) userInfoMap.get("user.name.given");
    String lastName = (String) userInfoMap.get("user.name.family");Also, roles are handled in a similar way, defining them in portlet.xml, web.xml, and finally mapping in roles.properties at deploy time.
    web.xml:
    <web-app ... >
         <security-role>
              <description>Sample role.</description>
              <role-name>Sample</role-name>
         </security-role>
    </web-app>portlet.xml:
    <portlet-app ... >
         <portlet>
              <security-role-ref>
                   <role-name>Sample</role-name>
                   <role-link>Sample</role-link>
              <security-role-ref/>
         </portlet>
    </portlet-app>roles.properties:
    cn\=Sample,o\=Sandbox,dc\=example,dc\=com=SampleSo after all that you can do:
    if (request.isUserInRole("Sample")) {
        // do stuff...
    }HTH,
    Rich
    Edited by: RichardBarrington on Nov 2, 2008 4:48 PM
    description element must be ahead of name element.
    Edited by: RichardBarrington on Nov 2, 2008 4:50 PM
    Added more complete role example.

  • Sun ONE Portal Server 6.0 and struts.

    Hi all,
    Has anyone tried using struts with Portal Server?
    Can we use/migrate struts application to Portal Server 6.0?
    As far as I know both uses one gateway servlet.
    Pelase reply.
    Thanks.

    Hi,
    The problem with integration of struts based
    applications is usually the project funding :-)
    There is no generic struts provider, only some
    custom build pieces...
    I guess that is the reason, why "zero effort" proxy
    of a struts application via IFrame channel is the
    most implemented integration.
    Cheers,
    Alex :-)

  • Dtermine OS type on server mult version and on db in mount

    Hi all
    I have a script that need to be able run on version 8 thoruh 11 and on standby and normal db's.
    The script need to determine the OS its running on , and if its a standby or not(its part af a general check script
    collection data from many sources)
    I have tried the platform_name from v$database (does not work on 8 and 9) and dbms_utility.port_string
    (does nok work on standby, since they are in mount mode).
    Where can I find the desired info?
    The script is running as sysdba.
    Regards
    Mette

    Mettemusens2 wrote:
    I was just thinking .... the dbms_utility_port_String (which works on primary dbs on all versions). must get his info from somewhere..... And If I could just get the name of the X/V view or wahtever, then I could get the info I need. I an logged on everywhere as sysdba, so access should not be a problem.
    Anyone knows ehere the packags gets the info from? (on 10/11 the platformname and the output from the package is the same)
    MetteI don't know the answer, but if I were suspecting the information I needed was available in a standard view or from a standard package, I'd go to the appropriate reference and start scanning the table of contents for names that suggest they might be likely candidates. I've been led to a lot of good stuff I was not aware of by using that technique. Yes I know there are a lot of view names, but again, the name of the view should be suggestive of what does -- and does not -- provide.

  • Installing Portal server on Solaris 10

    hi,
    I am installing portal server on a zone in Solaris 10 machine.Access Manager could be installed success fully . But now I am trying to install portal server. but it is showing installtion failed and configuratioin failed.
    Are there any special steps to be followed fro installation of Portal server on a different zone.
    The only product I have installed is the AM.
    please advice
    thanks in advance
    dhawanmayur

    Hi,
    I ran into trouble because the installer "forgot" to install SUNWldapcsdk-tools, but later tried to use /opt/SUNWdsee/dsee6/bin/ldapsearch, which wasn't installed (and the error I got was just that installation and configuration failed).
    You could either run the installer twice, first time just install the Directory Server, then manually install SUNWldapcsdk-tools (it is in Product/shared_components/Solaris_10/Packages directory), then run the installer again and install the other modules. Or you could get the Directory Server as a separate download, install that first (it is supposed to install everything you need, but I haven't tried it) and then run the installer for AM and the portal.
    Cato

  • Sun Java System Portal Server 6.0 FAQs

    Sun Java System Portal Server 6.0 FAQs.
    Author: Sanjeev Agarwal
    Q. How to connect to external URLs from Sun ONE Portal Server? I want to use URL Scrapper for some of external sites/URLs.
    Ans:
    You can connect to external URLs if you have a Proxy Server running.
    If you are using Web Server addition of Sun ONE the Portal Server then
    go to /opt/SUNWam/servers/https-hostname.domainname/config/ dir
    In the jvm12.conf file, enter the followings:
    http.proxyHost=proxyservername.domainname
    http.proxyPort=80 (or the appropriate proxy server port number)
    https.proxyHost=proxyservername.domainname
    https.proxyPort=80 (or the appropriate proxy server port number)
    If you are using Sun ONE AppServer addition of Sun ONE Portal Server then
    go to /var/opt/SUNWappserver/domains/domain1/<server-instance>/config dir
    In the server.xml file, enter the followings:
    <jvm-options>-Dhttp.proxyHost=proxyservername.domainname </jvm-options>
    <jvm-options>-Dhttp.proxyPort=80 (or the appropriate proxy server port number) </jvm-options>
    <jvm-options>-Dhttps.proxyHost=proxyservername.domainname </jvm-options>
    <jvm-options>-Dhttps.proxyPort=80 (or the appropriate proxy server port number) </jvm-options>
    After this modification restart the server.
    Q. Explain all the processes (solaris 8 and S1 Portal Server 6.0) which runs when I start the Sun ONE Portal Server.
    Ans.
    These are the processes that a running Portal Server installation (Sun ONE WebServer addition, without SRAP) generally has by default.
    1. Directory server processes:
    - ns-slapd (LDAP server instance)
    - uxwdog (admin server process) (parent process)
    --- ns-httpd
    ----- ns-httpd
    2. Auth Helper processes:
    - doUnix
    3. Web-Server/Identity-Server/Portal-Server processes:
    As the Portal Server and Identity Server runs as web application on the Web Server, so they share the same JVM and processes.
    - uxwdog (web server admin server process) (parent process)
    --- ns-httpd
    ----- ns-httpd
    (for each web server instance)
    - uxwdog (parent process)
    - ns-httpd
    - ns-httpd
    or (in case of MaxProc=n )
    - uxwdog (parent process)
    --- ns-httpd
    ----- ns-httpd
    ----- ns-httpd
    ----- n
    Q. I have created a custom Provider but getting this error when I access the desktop, what do I do?
    > error in the desktop.debug file:
    > ERROR: DesktopServlet.handleException()
    > java.util.MissingResourceException: Can't find bundle for base name CustomTabContainerProvider,
    Ans:
    It needs a resource bundle for the custom provider. You need to create a file CustomTabContainerProvider.properties (as mentioned in the error message) and put it into the /etc/opt/desktop/classes directory. If you are not using any properties defined in this resource file then it can be a empty file. Have a look on the properties files that bundled containerProviders uses in dir <portal-install-dir>/SUNWps/web-apps/https-<host.domain>/portal/WEB-INF/classes.
    As you are extending JSPTabContainerProvider class, you can just copy the file JSPTabContainerProvider.properties from the above directory after renaming it to the <defined-provider-name>.properties (in your case CustomTabContainerProvider.properties) and move it into /etc/opt/desktop/classes directory.
    Q. what is actually multiple instances of Portal Server means?
    Ans:
    Multiple instance of Portal Server means, you will have more http listeners for the same desktop contents and the same identity profiles stored in a single Directory Server which all the instances share.
    In simple words you can have your Portal Server listening on different http ports, but uses same configuration, desktop and identities.
    It can help you to share the load for Portal Server http requests. The alternate methods are to create more web server virtual server processes (maxProc=n, but in this case the listening port will be 1 only) or use some hardware load balancer.
    You can achieve more from multiple instances if you have a multi level organization, you can change the look and feel of all the instances, images, services, components and can assign each instance to different organization or sub-organization.
    Q. How do I check the availability of the Sun ONE Portal Server/Identity Server services.
    Ans:
    You can check the availability of Sun ONE Identity Server services from following urls.
    http://<host.domainname>:<port>/amserver/sessionservice
    http://<host.domainname>:<port>/amserver/loggingservice
    To know the availability of components of Sun ONE Portal Server like Desktop/providers/Rewriter/Netmail you have to login into desktop. These are not services, but just the programming identities which will work if your Web Server and Identity Server is running.
    Just go to URL http://<server>:<port>/portal/dt , if it shows up that means your portal server is fine, and these entities will work for sure.
    Q. I am able to add the yahoo channels to existing users. But I am getting the weather for London not for local New Jersey. My language pref is to en|en_US and also the server is the default U.S server and not europe. How do I add the cities I want to see on weather channel?
    Ans:
    A Portal user himself (after login) can select what cities he want to see in weather channel.
    Steps:
    - click the edit button of weather channel
    - click on the area you belong to from Available Sections
    - select the cities from Available Cities select box and add them to Your Choices.
    - click finished from select city page and then again click finished from select area page.
    It will come back to the Portal Desktop and you will see all the cities you have selected in the weather channel.
    Q. How to use getContent() method to use in custom jsp providers (developed by ourselves) so that it can be used to retrieve a jsp page. I have already placed the JSP file in the directory structure /etc/opt/SUNWps/desktop/default/channel_dir. But still the jsp is not being displayed.
    Ans:
    You don't have to do anything in the custom JSPProvider's getContent method except the call { return super.getContent(request,response); } . If all you want is just to show your jsp, then create a channel from the default JSPProvider, and edit the property contentPage of that channel from samplecontent.jsp to your jsp name, save the changes and login again. You should see your JSP.
    Q. I want to remove all the buttons (help/edit etc.) from all the channels/one particular channel in my desktop?
    Ans:
    You can hide any buttons you want from any channel.
    These steps show how to hide all the buttons.
    1. Create a channel say "myNetlet" from netlet provider.
    2. Set the channel title to "myNetlet"
    3. Go to the dir /etc/opt/SUNWps/desktop/default/JSPTableContainerProvider and edit the file providerCommands.jsp, and modify the last line :
    from :
    <%=minMaximizeCommand%><%=helpCommand%><%=editCommand%><%=detachAtachCommand%><%=removeCommand%>
    to:
    <% if ( !(title.equals("myNetlet"))){ %><%=minMaximizeCommand%><%=helpCommand%><%=editCommand%><%=detachAtachCommand%><%=removeCommand%><% } %>
    4. Clean the dir mentioned below which contains compiled JSPs. /var/opt/SUNWps/https-<host>.<domain>/portal/tmp/_jsps/_etc/_opt/_SUNWps/_desktop/_default_en/_JSPTableContainerProvider/_html and reload the page.
    Relogin, and you would not see any buttons on "myNetlet" channel. You can customize this logic as per your needs.
    Q. How to change the title of SampleJSP Channel. I tried to change the channel properties title value via iplanet directory Server Access Management GUI. But it is not getting reflected.
    Ans:
    Through Admin console you can change the channel property "title", and as soon as you refresh the page (Shift reload) of relogin in the portal it get's reflected.
    The reason to this problem may be due to the channel property "title" is having "propagate" value as false and you are setting the channel title in the org level display profile not in the user level display profile.
    So better you change the channel name in user's display profile also.
    For this login into admin console and go to :
    - View: "User Management" -> click on organization -> Show: Users
    - click on the blue arrow of that user
    - click on Edit in section Desktop (this will open a window)
    - then change the channel properties same way you do for Organization display profile.
    Q. Login Problem with SunOne Portal 6.0.
    I was able to download and install sun one portal 6 on Solaris 8. The sample portal page came up after installation. However whenever I try to login to the Login channel with "amadmin" and the passphrase I used during installation, it takes me to another page - iPlanet/LDAP authentication page. Here I tried using the same login, but fails every time (the same login page appears). The url that shows is "http://<hostname>/amserver/login?module=dproadmin&goto=/amconsole/base/AMAdminFrame"
    I tried registering myself as a new user as well. This too fails.
    Ans:
    Make sure you are giving fully qualifying the hostname in the url which invoked the desktop. This in fact is documented in the administration documentation. If the hostname is not fully-qualified, the login page goes into an endless mode. Again, the correct url is "http://<fully-qualified-hostname>/portal". Once you get to the desktop, the login and the new user registration works.
    Q. How to send variables/parameters from 1 app to another app deployed on Sun ONE Portal Server? It may be the apps or different JSPs of JSP provider channel.
    How to achieve inter channel communication in Sun ONE Portal Server?
    Ans:
    You can use servlet context object or session, or may be the request object itself to store the information from one channel and use that in another channel. The use of either of these 3 approaches may depend on your requirements. Using session, the information will be available to that user's channels only, using request, the information will be available for that user and that request only and by using ServletContext you can share the information across users and sessions. You can obtain DesktopServlet's ServletContext object inside JSP/JSPProvider.
    Q. I am trying to modify the default desktop JSPs in TableContainerProvider and TabCotntainerProvider dirs, but it is not picking my modified JSPs ? what do I do?
    Ans:
    One easiest way to 100% ensure that it updates all your new jsp pages is to remove all the compiled jsps so that with next request the Sun ONE Portal Server compiles all the jsps and will make sure that your modification will be taken care of in next request.
    Go to /var/opt/SUNWps/https-<instance_name>/portal/tmp/_jsp/_etc/_opt/_SUNWps/_desktop/_default_<locale>/ and remove everything. and access the Portal server, it will be little slow as it has to compile all the JSPs again. Here you will find directories in the name of Containers and Channels, so if you are modifying any particular Container/Channel you can just delete that only. This approach can help a lot during development time.
    Q. What is the location of compiled JSPs in Sun ONE portal Server and what servlet spec does it supports?
    Ans: The Portal server 6.0 runs on Sun ONE Web Server 6.0 sp2, which supports only jdk 1.3 and servlet spec 2.2 only. The Sun ONE Portal Server keeps the compiled jsps of desktop and channels in : /var/opt/SUNWps/https-<instance_name>/portal/tmp/_jsp/_etc/_opt/_SUNWps/_desktop/_default_<locale>/ dir as per the channels/container names.
    Servlet 2.3 is supported if you run the Portal Server edition that runs on Sun ONE Application Server 7.0.
    Q. How do I change jdk for Sun ONE Portal Server to another jdk? I want to change the JDK of only one of my Portal Server instances, is it possible? how?
    Ans:
    Yes you can achieve both.
    A. To change the JDK for all the server instances:
    Open <portal-install-dir>/SUNWam/servers/https-admserv/start-jvm file and modify the first line
    NSES_JDK=/usr/java_1.3.1_04; export NSES_JDK
    to
    NSES_JDK=<your-jdk-location> ; export NSES_JDK
    then open <portal-install-dir>/SUNWam/servers/https-<instance-name>/config/jvm12.conf file of all the server instances and add a line
    jvm.option=-server after the first line
    B. To change the JDK for a particular server instances:
    Make a another copy of the start-jvm file rename it and modify the jdk location in it as mentioned above.
    Open the start script from <portal-install-dir>/SUNWam/servers/https-<instance-name> dir and modify these lines :
    if test -r {SERVER_ROOT}/https-admserv/start-*
    then
    for STARTSCRIPT in {SERVER_ROOT}/https-admserv/start-*
    modify this to
    if test -r {SERVER_ROOT}/https-admserv/<changed_name_of_start-jvm-file>
    then
    for STARTSCRIPT in {SERVER_ROOT}/https-admserv/<changed_name_of_start-jvm-file>
    Note: As Portal Server 6.0 uses Web server 6.0 sp2, jdk 1.4 is not supported.
    Q. How do I create a custom login page or a link, which will just log me into the portal server.
    Ans:
    You can create a custom page in your jsp page, just add this portion of html into your web page :
    <FORM action="http://<server>:<port>/amserver/login?module=<login-module>&page=1" method=post name=login_form2 target=_top>
    Login page using <login-module><br>
    <P>Enter UserId<BR><INPUT name=TOKEN0 size=22></P>
    <P>Enter Password<BR><INPUT name=TOKEN1 size=22 type=password></P>
    <P><INPUT name=Submit type=submit value=Submit> </P>
    </FORM>
    The <login-module> can be LDAP or Unix or Membership which ever you have enabled. Or instead of this you can create a link. For example for LDAP auth module :
    "<a href="http://<server>:<port>/amserver/login?module=LDAP&page=1&TOKEN0=user&TOKEN1=password" target=_top> Login into Portal </a>"
    where user and password are the user credential for the portal server.
    Q. Can I install a portal server pointing to another Identity server? I want to install few postal servers (on different machines) pointing to same identity server, is it possible?
    Ans:
    No, right now the Sun ONE Portal Server is tightly integrated with Sun ONE Identity Server so you can't just install only Sun ONE Portal Server and point it to another Sun ONE Identity Server. You can have a common Directory server if you want.
    Q. I have an application which takes input in from anonymous user and then to complete the request the user than has to login. I am having problem in passing the taken input from anonymous page to logged in user. all the request parameters are lost when I log in. How do i get the request parameters after I log in
    Ans:
    You can create a custom login page and submit the form to "/amserver/login" with a hidden parameter "goto" through which you basically specify which url to go after you log in. So you can use this mechanism to create a query string with all your request parameters you want to pass after login. For example:
    You can create a jsp which take few inputs from user and to complete the request you have to login so it posts the input form to a login jsp and stores the parameters taken from user in a hidden field (goto) :
    <FORM action="/amserver/login?module=LDAP&page=1" method=post name=login_form2 target=_top>
    Login page using LDAP<br>
    <P>Enter UserId<BR><INPUT name=TOKEN0 size=22></P>
    <P>Enter Password<BR><INPUT name=TOKEN1 size=22 type=password></P>
    <INPUT TYPE=HIDDEN NAME="goto" VALUE="/portal/dt?param1=<%=request.getParameter("param1")%>&param2=<%=request.getParameter("param2")%>">
    <P><INPUT name=Submit type=submit value=Submit> </P>
    </FORM>
    After you login through this page both the param1 and param 2 will be available in the request object after you login and you can retrieve them in your application or jsp.
    Q. I have few System.out.println in my jsp which i am using in my JSP provider channel, but when I look at the portal server's /var/opt/SUNWam/debug/desktop.debug file, none are there. I looked at the web server's access and error logs too, but it is not there also. Can somebody tell me how do it get those ? Do we have any other mechanism to put debug logs ?
    Ans
    By default the binary which web server runs is uxwdog which eats up System.out.println output. If you want to see the System.out.println then you need to change the product binary from the start script of the portal server instance.
    - Go to <portal-install-dir>/SUNWam/servers/https-<instance-name> and open the start script
    - Change the PRODUCT_BIN=uxwdog to PRODUCT_BIN=ns-httpd , save the file
    - Run the script ./start to start the portal server
    Note : with ns-httpd ON the server will not leave that shell, and in the same window/shell you will be able to see all your System.out.println statements. To close the server you have to kill the server process with "kill -9 pids" command
    Alternate way is to use api inside your application or jsp:
    <%@page import="com.sun.portal.providers.jsp.JSPProvider, com.sun.portal.providers.*, com.sun.portal.providers.containers.*, com.sun.portal.providers.context.*" %>
    <% JSPProvider p=(JSPProvider)pageContext.getAttribute("JSPProvider");
    ProviderContext pc = p.getProviderContext(); %>
    <%-- after that you can use these lines any where in your jsp --%>
    <%
    pc.debugError("your error msg");
    pc.debugMessage("your msg");
    pc.debugWarning("your warning msg");
    %>
    The particular mgs will be shwon in /var/opt/SUNWam/debug/desktop.debug file as per your "debugLevel" parameter setting in /etc/opt/SUNWps/desktop/desktopconfig.properties file. By default the debugLevel is set to error so only pc.debugError("error msg") will be shown.
    Q. Multipart form (file upload) processing in providers? Is it supported
    Ans:
    The Sun ONE Portal Server's DesktopServlet does not have the ability to process a request with the content encoding type of multipart/form-data. DesktopServlet does not pass the input stream for the request on to the Provider.
    To accomplish handling of multipart/form-data type requests, it is necessary to create a companion servlet or JSP that process the multipart/form-data. This servlet can then pass control back to the Portal channel. The data from the file can be shared between the servlet and the provider by using static Java members or by storing the data in a back-end database and then passing a reference to the data over to the provider.
    Q. After installing the Portal Server I am trying to login as admin, but it is failing and coming back to login page every time. How do I login?
    Ans:
    The Default Admin user is 'amadmin' and the password is the PASSPHRASE you give during Portal Server installation. Try login using these credentials.
    Also in the browser give the complete URL for the Portal Server like : Http://<myhost>.<mydomain>:<port>/amserver/login or Http://<myhost>.<mydomain>:<port>/amconsole. You can't login into portal server's IDSAME console by giving IP Address or just the hostname, also your machine should be listed in the DNS server so that it can resolve the name.
    Q. I installed Sun ONE Portal Server 6.0 some time back, and now I want to know all the installation parameters and user/passwords for whole portal installation. How do I do that?
    Ans:
    The Default Admin user is 'amadmin' and the password is the PASSPHRASE you give during Portal Server installation. Also in the browser give the complete URL for the Portal Server like : Http://<myhost>.<mydomain>:<port>/amserver/login or Http://<myhost>.<mydomain>:<port>/amconsole. You can't login into portal server's IDSAME console by giving IP Address or just the hostname, also your machine should be listed in the DNS server so that it can resolve the name.
    In case you have forgotten the port numbers and PASSPHRASE that you give during installation, you still can see all the information for each component of your Portal Server Installation. The Portal server and it's components like Directory Server, Web Server and IDSAME are installed as Solaris package so the system has all the information for these packages.
    Portal Server : See file /var/sadm/pkg/SUNWps/pkginfo
    Directory Server : See files /var/sadm/pkg/SUNWamds/pkginfo and /var/sadm/pkg/SUNWamdsc/pkginfo
    Web Server : See file /var/sadm/pkg/SUNWamws/pkginfo
    Identity Server : See file /var/sadm/pkg/SUNWamsam/pkginfo
    Note: In any case you should never edit/modify these files.
    Q. Controlling the display of the help (?) button.
    Where are the links/image elements defined for the help/edit/minimize buttons? the leafWrapper.jsp pulls the hashtable out of the HttpRequest, and that hashtable is being used by providerCommands.jsp:
    Hashtable commands = (Hashtable)request.getAttribute("provider_cmds");
    Any idea where this is being set?
    Ans:
    - You can remove the help/edit button of any channel by adding the line into the Channel's properties by editing the Xml of display profile in the admin console.
    <String name="helpURL" value="" advanced="false" merge="replace" lock="false" propagate="true"/>
    <Boolean name="isEditable" value="false" advanced="false" merge="replace" lock="false" propagate="true"/>
    The Attribute 'provider_cmds' is set into /etc/opt/SUNWps/desktop/default/JSPTableContainerProvider/tablecolumn.jsp :
    <dttable:getProviderCommand id="provider_cmds" scope="request" />, and after that only the leafwrapper.jsp is included, but the Hashtable is generated by a class com.sun.portal.providers.util.ProviderCommands.java and made available through taglib classes. So you can't change the generated contents/string in the Hashtable.
    But you can change the default 'alt' text displayed and the images linked to the help/edit icons. As this modification is at Provider level, it will change the icons for all the channels in the desktop.
    Please see the file:
    /opt/SUNWps/web-apps/https-<host>.<domain>/portal/WEB-INF/classes/JSPTABLEContainerProvider.properties.
    Here you will find the mapping. The image location are given from the context root of portal server which is by default : /opt/SUNWps/web-apps/https-<host>.<domain>/portal.
    Q. I have a number of web applications needed to integrate to portal server. Any pointers or tips of what my option is?
    Ans:
    You can very well integrate all your web application with Portal server. Portal Server 6.0 has web container same as Sun ONE web server 6.0 Sp2, which runs on Jdk-1.3.
    If your web applications are just Servlets/Jsps then you can very well port them on Portal server's webserver which supports war module deployment. (infect for Web server the Portal server and Identity server is like a war module.)
    There can be two possibilities in this case, either you put the whole of your application on portal server and make the link available into the desktop via 'Application Provider Channels' or you can create a client to your web application into portal server.
    If your web application is on Sun ONE Application server 7.0 and needs authentication, you can also have SSO. If you just want to show the link of your web application into desktop then you can either use URL Scrapper to show the first page of your web application or use Bookmark channel to provide just the url.
    The easiest way to make a client of your web application is to use JSP Channel using JSPProvider and put your logic into the samplecontents.jsp file or you can create your own custom Provider extending JSPProvider. There can be a lot of different configurations, depending on the web application you want to integrate and your needs
    Q. I removed few channels from the org level display profile but still they are coming to the desktop of users, I had accessed the desktop before. why?
    Ans:
    If you still see any channel after you remove it from the display profile at organization lever, that means you have to edit the user's display profile. So go to admin console and select User from Show: menu and click on the blue arrow near the user. In the right frame under the 'Desktop' category click on the Edit link (right side). This will open user's display profile in a window. Now edit it as per your requirements.

    Unfortunately Web Server 6.0SP2 is no longer available for download.
    If you must use Web Server 6.0, you should use the most current Service Pack. It is backward compatible and contains many performance and security fixes.

  • Installing Portal Server 7.1 on Windows XP

    I installed Portal Server 7.1 for Windows, via the Sun Java Application Platform Suite Installer. The installer was super clean and very easy--practically idiot-proof. It is substantially easier to install than the SPARC version.
    However, during installation and configuration--done via the GUI--the Portal Server configuration failed. After performing all the necessary post-intallation tasks, I discovered that CACAO will not start. When I attempt to start CACAO, I get the following:
    "Cannot start an unconfigured instance. "
    --(This is a doc defect. The doc should tell me to configure before starting)
    After attempting to configure, by following the instructions, I get the following error:
    "Error handling error: 1722, LookupAccountName at <cacao-base>\cacao_2\\configure.pl line 120."
    Is this a bug or is this yet another documentation defect? Anyone experience this during a Windows installation?

    Hi,
    I'm also trying to install Portal Server 7.1 and configure the same , getting the same error
    ---------------- "Cannot start an unconfigured instance."
    I went to the cacao log location "C:\Program Files\Sun\JavaES5\share\cacao_2\var\cacao\instances\default\logs" to find out the errors but could not find any log files there.
    But when i went to the AM log location "C:\Program Files\Sun\JavaES5\identity\debug" . I found three files namely,
    amEventService
    amSDK
    CCPPClientDetector
    there contents are as follows,
    In amEventService
    03/13/2007 06:07:23:380 PM IST: Thread[EventService,5,main]
    03/13/2007 06:07:23:380 PM IST: Thread[EventService,5,main]
    rminating! Persistent Searches will no longer be operational.
    03/13/2007 06:07:23:380 PM IST: Thread[EventService,5,main]
    ERROR: EventService.run() - Monitor thread is terminating! Persistent Searches will no longer be operational.
    In amSDK
    03/13/2007 06:07:23:365 PM IST: Thread[EventService,5,main]
    ERROR: Connection to LDAP server threw exception:
    netscape.ldap.LDAPException: failed to connect to server ldap://w2gzw3vm01.apac.corp.eds.com:1389 (91); Cannot connect to the LDAP server
    at netscape.ldap.LDAPConnSetupMgr.connectServer(LDAPConnSetupMgr.java:517)
    at netscape.ldap.LDAPConnSetupMgr.openSerial(LDAPConnSetupMgr.java:437)
    at netscape.ldap.LDAPConnSetupMgr.connect(LDAPConnSetupMgr.java:276)
    at netscape.ldap.LDAPConnSetupMgr.openConnection(LDAPConnSetupMgr.java:201)
    at netscape.ldap.LDAPConnThread.connect(LDAPConnThread.java:109)
    at netscape.ldap.LDAPConnection.connect(LDAPConnection.java:1081)
    at netscape.ldap.LDAPConnection.connect(LDAPConnection.java:952)
    at netscape.ldap.LDAPConnection.connect(LDAPConnection.java:903)
    at netscape.ldap.LDAPConnection.connect(LDAPConnection.java:1050)
    at netscape.ldap.LDAPConnection.connect(LDAPConnection.java:1060)
    at netscape.ldap.LDAPConnection.connect(LDAPConnection.java:1005)
    at com.iplanet.services.ldap.DSConfigMgr.getConnection(DSConfigMgr.java:387)
    at com.iplanet.services.ldap.DSConfigMgr.getNewFailoverConnection(DSConfigMgr.java :354)
    at com.iplanet.services.ldap.DSConfigMgr.getNewConnection(DSConfigMgr.java:283)
    at com.iplanet.services.ldap.DSConfigMgr.getNewAdminConnection(DSConfigMgr.java:24 0)
    at com.iplanet.services.ldap.event.EventService.addListener(EventService.java:351)
    at com.iplanet.services.ldap.event.EventService.resetAllSearches(EventService.java :673)
    at com.iplanet.services.ldap.event.EventService.run(EventService.java:515)
    at java.lang.Thread.run(Thread.java:595)
    and In CCPPClientDetector
    03/13/2007 05:48:23:565 PM IST: Thread[main,5,main]
    03/13/2007 05:48:23:565 PM IST: Thread[main,5,main]
    ERROR: Could not get 'fediConfigRoot' from properties file:
    03/13/2007 05:50:04:205 PM IST: Thread[main,5,main]
    03/13/2007 05:50:04:190 PM IST: Thread[main,5,main]
    ERROR: Could not get 'fediConfigRoot' from properties file:
    03/13/2007 05:50:37:643 PM IST: Thread[main,5,main]
    03/13/2007 05:50:37:643 PM IST: Thread[main,5,main]
    ERROR: Could not get 'fediConfigRoot' from properties file:
    03/13/2007 05:51:13:377 PM IST: Thread[main,5,main]
    03/13/2007 05:51:13:377 PM IST: Thread[main,5,main]
    ERROR: Could not get 'fediConfigRoot' from properties file:
    any ideas on what I'm missing ?
    Thanks in Advance,
    Vinayagan

  • Can i install the Portal Server 7 on Red Hat Enterprise Linux 4 ?

    hi all,
    Can i install Portal Server 7 on Red Hat Enterprise Linux 4 ?
    Thnx in Advance.

    Hi All,
    After tearing my hair out for about 3 weeks I've figured following are the steps for installing Sun Portal Server 7 on RH Linux 4. These though help successful installation I am still struggling to get the Single Sign On for the sample applications working.
    1. Boot linux with the network cable disconnected. (cable disconnected or wireless disabled is very important).
    2. set Hostname to localhost.localdomain
    3. Start INstaller (I always used the root login).
    4. Once the components list comes up "select All" then unselect "Sun POrtal Server 7" and "Sun Java System Portal Secure Remote Access". (trust me firends I am not kidding around).
    5. Follow steps of installation. Provide a password wherever requested. Highly suggested that you note down the options and the values you are entering in each step. Its about 20 page installer. Also whereever host and domain is asked for use localhost.localdomain. IP should be 127.0.0.1. Valid IP and valid domain name will also work but I haven't gone that route yet.
    6. Take special note of the LDAP Admin Password and LDAP user password. Note the usernames too. The admin password and user passwords HAVE to be different. DO NOT Forget the admin password. Default admin name is amAdmin.
    7. Go ahead and let the installation complete.
    8. I always used localhost.localdomain as domain name and host name and IP to loopback address 127.0.0.1
    Once the installation is complete start newly installed server in the following sequence
    A. To start localhost slapd:
    cd /var/opt/sun/directory-server/slapd-localhost/
    ./start-slapd
    cd /var/opt/sun/directory-server/
    ./start-admin
    (you can test here by running ./startconsole and loggin in using the admin username and password (you you should have remembered those... don't tell me I didn't warn you :)...)
    B. To start Sun Java System Application Server
    cd /opt/sun/appserver/bin
    ./asadmin start-domain --user [username] --passwordfile [a simple txt file with only the password in it] [domain name]
    e.g.
    ./asadmin start-domain user admin passwordfile adminpassword.txt domain1 OR
    ./asadmin start-domain user admin password pass123 domain1
    takes a few seconds to kick it off.
    open browser and go to http://localhost.localdomain:8080/ to check if application server is running
    C. To start Identity Server
    cd /opt/sun/identity/bin
    ./amserver start
    Now go to the SunPortal Server installer again and run it.
    9. In the screen that asks whether you want to install only or configure select configure now.
    10. Fill in required parameters like password. and user name. ( I kept ALL default and used the same password all throughout except for LDAP admin, I am doing this for a PoC so security be damned at the moment ).
    11. Be sure to fill in the correct LDAP admin and user passwords because else installation will fail.
    12. Let the installation roll
    13. At about 38% it will give a popup warning configuration may take upto an hour. If you get to click on this popups ok button good things are progressing fine. If not some server didn't start right.
    14. Takes about 15 minutes (depends on machine config) after you hit okay for the configuration to complete. Anything lesser check logs for any failure notices.
    15. IF all success reported congratulations!!!
    16. Goto http://localhost.localdomain:8080/portal/ to go to portal home page
    IT STILL DOESN"T WORK!!! HELP!!!
    Folks after all I said above it still doesn't work. When I go to any of the portal server Sample Applications and try to log in using the default usernames
    Community Samples has test/test
    Enterprise Sample has mary/mary ed/ed etc
    I cannot log in... The screen simply refreshes but doesn't go anywhere.
    I am suspecting this is because the domain and host is pointing to localhost.localdomain instead it should be given a valid domain name and a valid host and a valid IP instead of 127.0.0.1. If anyone can throw anymore light on this I'll be grateful.

  • Is anybody even using Portal Server 7.2 ?

    We've experienced a lot of runtime stability issues in our test with Portal Server 7.2, and can't help but notice additional problems reported here on the Forum.
    It does not give us great confidence, to say the least, when it comes to putting this into production..
    Is anybody out there successfully using 7.2 in a production environment? If so, can you tell us what OS you are running it on?
    Thanks!

    We are not in production until now - but we are currently migrating our Portal 6.3 to 7.2.
    Indeed, there are some issues open with this version. Sun support told us that there will be a "Patch 1" in the
    near future, but we have no exact date so far.
    A pre-release version of this patch fixed some of our problems (mainly in conjunction with certificate-based
    authentication).
    WebSynergy is currently not of interest to us, because it will need some time before there will be a production
    release.
    We need a well-supported version, new features are currently not relevant to us. Therefore, we hope that 7.2
    will be a stable, supported version for some time.

  • Portal Server 7.2 corruption?

    We are running a number of Solaris zones with Portal Server 7.2, and experience that something has caused every one of them to become corrupted. The logs show the following when trying to deploy or undeploy portlets:
    admin log message that seems to indicate some attribute has disappeared from database or config:
    [#|2008-08-04T12:09:22.840+0200|SEVERE|SJS Portal Server|debug.com.sun.portal.portlet.admin.mbeans|ThreadID=61;
    ClassName=com.sun.portal.portlet.admin.mbeans.PortletAdmin;
    MethodName=logPortletDeployerException; |PSPL_CSPPAM0004 : PortletDeployerException: <global>,
    com.sun.portal.portlet.admin.mbeans.tasks.PortletDeployerException: errorRetrieveDP
    Caused by: com.sun.portal.desktop.context.ContextError: DSAMEConnection.getGlobalAttributes(): SunPortalportal1DesktopServiceadmin desktop log says the following which seems to indicate a classpath problem:
    [#|2008-08-04T12:09:22.911+0200|SEVERE|SJS Portal Server|debug.com.sun.portal.admin.console|ThreadID=59;
    ClassName=com.sun.portal.admin.console.common.PSBaseBean; MethodName=log; |Exception in DeployPortletBean.doUndeploy()
    java.io.IOException: java.lang.ClassNotFoundException: com.sun.portal.desktop.context.ContextErrorThe only thing I remember we did different just before it stopped working was that I set -Dfile.encoding=iso8859-1 on only one of the zones to try to work around a problem with using Norwegian characters in Wicket-portlet HTML pages.
    Any ideas?

    Has anyone found the root cause of this problem? I am facing the same problem it seems like if solaris is not shutdown properly u get this problem, but I dont know how to resolve it any help would be greatly apprecialted.
    I get the following error on my browser:
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: DSAMEConnection.getGlobalAttributes(): SunPortalportal1DesktopService
    root cause
    com.sun.portal.desktop.context.ContextError: DSAMEConnection.getGlobalAttributes(): SunPortalportal1DesktopService
    root cause
    java.lang.NullPointerException

  • Display a Calendar View in the Portale Server

    Hi, we use portal server 6.2 and we want to display a view of the calendar inside a channel of the portal.
    We know that portal have a calendar provider but we really didn't understand how can we use this provider to call a custom view of the calendar.
    Is it possible to display a custom view of the calendar inside a page of the portal ?
    Thanx

    Probably better to be posting this in the Calendar forum.

  • Creator2 portlet on JBoss Portal Server 2.2

    Has anyone managed to get a JSF Portlet created with Creator2 to run on JBoss Portal server 2.2? I've found documents on getting Creator2 to work with JBoss AS, but not JBoss Portal.
    JBoss Portal Server uses MyFaces and I would like to keep for example the JBoss CMS portlet and add custom portlets created by Creator2 (so some portlets would use MyFaces and some would use RI).
    Thanks for any pointers,
    Lloyd

    Apparently JBoss is using MyFaces for some of their portlets. From what I can tell, I could replace the MyFaces jars with RI jars, which might work, but would cause all the JBoss portlets that are distributed (or at least the admin) portlet to not work.
    In short, you can use RI with JBoss portal, but then some/all of the JBoss portlets may not work.
    Lloyd

Maybe you are looking for

  • This is the noob question of the week regarding gdm

    I am no linux noob per se. but i did something really really stupid just now. started with a fresh install of arch, added e17 and gdm. wait...did i forget something? but of course! create a non-root user. so anywho. now gdm is installed and comes up

  • Why is my site no longer private

    I have a blog that I password protected. Today one of my friends emailed and wondered why I had removed the password. In iWeb 09 the site is checked as being private, but when I use a public computer I can get to it without the password prompt. Anyon

  • How to make some computers available on the Internet? Remote Desktop.

    We have 12 computers (VMs) that are used for training. They are configured with the software to be trained on and are set up just the way we want them. We are looking for a way that we can make these computers available to the internet so that someon

  • Indesign CC spell check

    I am using indesign CC and when I spell check the document i am working on it indicates that pretty much every word is spelled incorrectly (the aren't) I have check and my dictionary is set to English, however the spell check window indicates that it

  • Dell d430 works with acpi=off only [SOLVED]

    Hello, I've instaled archlinux on my new used laptop - dell d430. Here is specs: http://www.cnet.com/laptops/dell-latitu - 90396.html I couldn't install arch before i made acpi=off in instalator - nomodeset and/or video=SVIDEO-1:d didn't work. the sa