[jboss-user] [JBoss Portal] - Re: dashboard

2009-06-22 Thread ariel_red
Thank you for your help. I think I had known it .So I will try it. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4238930#4238930 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4238930

[jboss-user] [JBoss Portal] - Re: dashboard

2009-06-19 Thread jpviragine
Ariel, The main purpose of dashboard is to provide the user the possibility to customize his view of the portal. Something like iGoogle. When we translated the word dashboard for Brazilian Portuguese, we translated to 'Meu Portal', a word that means My Portal in English. View the original

[jboss-user] [JBoss Portal] - Re: Dashboard configuration - drag and drop

2009-02-23 Thread jssteux
Hello, Here is a common way to create a transaction : import javax.naming.InitialContext; import javax.naming.NamingException; import javax.transaction.TransactionManager; import javax.transaction.UserTransaction; InitialContext ctx = new InitialContext(); UserTransaction tx; tx =

[jboss-user] [JBoss Portal] - Re: Dashboard configuration - drag and drop

2009-02-22 Thread diparc
Thanks Sambit Vivek! I wrote a servlet filter like you suggested and I am creating the user when the user is not found, also creating the role when not found, and assigning role to user using the membership module - however, I am getting an exception when it tries to create the user in the

[jboss-user] [JBoss Portal] - Re: Dashboard configuration - drag and drop

2009-02-22 Thread diparc
I was looking at other posts in the forum and figured that I do need to manage hibernate transactions. I modified the code to do that and it is working now. Hoping this is the right way though, please share your thoughts - I am leaving the code snippet here - |private void

[jboss-user] [JBoss Portal] - Re: Dashboard configuration - drag and drop

2009-02-20 Thread vivek_saini07
see user must be authenticated against portal-server.war, means against JBossPortal application. for user authentication we changed in following files login.jsp login-config.xml loginModule defined in login-config.xml View the original post :

[jboss-user] [JBoss Portal] - Re: Dashboard configuration - drag and drop

2009-02-20 Thread diparc
I modifed all those files - we use directory smart and I am using a custom login module for authentication that extends UsernamePasswordLoginModule. I am not using any of the *IdentityLoginModule is it required to use one of the *IdentityLoginModules ? in web.xml of portal-server.war, I have

[jboss-user] [JBoss Portal] - Re: Dashboard configuration - drag and drop

2009-02-20 Thread vivek_saini07
what we did is after authentication we created a new user in user module of jboss portal and assigned a role from MembershipModule of jboss portal. userModule = (UserModule)new InitialContext().lookup(userModuleJNDIName); | | membershipModule = (MembershipModule)new

[jboss-user] [JBoss Portal] - Re: Dashboard configuration - drag and drop

2009-02-20 Thread sambit_dixit
Hi, By design, Jboss Portal can be accessed by any user where as dashboard are user specific. That is why you can when accessing portal you can access, http://abc/portal/portal/yourportalname where as for dashboard it is http://abc/portal/auth/dashboard. In Portal-Server.war

[jboss-user] [JBoss Portal] - Re: Dashboard configuration - drag and drop

2009-02-19 Thread diparc
I have set aside the multiple dashboard, will be working on it after sometime. currently, I am configuring authentication for JBoss portal and using the same authentication that is used by my web app - Authentication works fine when i access the portal page. However it gives me a Http 500 No

[jboss-user] [JBoss Portal] - Re: Dashboard configuration - drag and drop

2009-02-12 Thread diparc
Thanks vivek_saini07 - luckily i am not alone - I figured out the problem with the dashboard url - my template portal did not have a default page. now it has a default page and it copies the contents of my custom template portal to the dashboard. so i am good so far with a single dashboard and

[jboss-user] [JBoss Portal] - Re: Dashboard configuration - drag and drop

2009-02-12 Thread vivek_saini07
anonymous wrote : n my case I need a different dashboard depending on what the user clicks on - I dont know if i can do this based on some request parameter i.e., depending on some request param, i copy different portal to the dashboard ? Yes it is achievable u can get request object in

[jboss-user] [JBoss Portal] - Re: Dashboard configuration - drag and drop

2009-02-11 Thread diparc
Removing the template portal from default-object.xml did not work. it gives me a http 404 when i try to access the dashboard url http://server:port/portal/auth/dashboard I have defined my own template portal in portal-object.xml - that file is loaded because i can access the template portal

[jboss-user] [JBoss Portal] - Re: Dashboard configuration - drag and drop

2009-02-11 Thread vivek_saini07
We have achieved something similar in our project. diparc wrote : Thanks for a quick response. | | I modified the jboss-portal.sar/conf/config.xml to change the following property to dashboard | | dashboard | | Also, i noticed that the template portal is defined in

[jboss-user] [JBoss Portal] - Re: Dashboard configuration - drag and drop

2009-02-10 Thread thomas.he...@jboss.com
anonymous wrote : what i want to do is simple, copy the page to the dashboard the first time he accesses his dashbord and always point user to his dashboard. First time a user access the dashboard he gets a copy of the template portal. Which is defined in XML files for feeding. To redirect

[jboss-user] [JBoss Portal] - Re: Dashboard configuration - drag and drop

2009-02-10 Thread diparc
Thanks for a quick response. I modified the jboss-portal.sar/conf/config.xml to change the following property to dashboard dashboard Also, i noticed that the template portal is defined in /jboss-portal.sar/conf/data/default-object.xml but it seems that it copies only the template portal

[jboss-user] [JBoss Portal] - Re: Dashboard show to other users

2009-01-29 Thread andiXT
Its easy - every user might configure its own dashboard, apply own theme, add desired portlets - another words - create its own page. After then this dashboard might use other users - just view its content. Examples: Car renting portal. Administrator of portal has configured only default portal

[jboss-user] [JBoss Portal] - Re: Dashboard show to other users

2009-01-28 Thread vivek_saini07
could u please elaborate the use case scenario. Why a dashbord page needs to be shown to other user. You can enable DnD and and persist the window positions for non dashboard pages with little change. I guess these are the only extra features you get on dashboard pages. View the original post

[jboss-user] [JBoss Portal] - Re: Dashboard: permission denied for role created using Sync

2008-10-06 Thread jsports
I encounter the same problem. I think it's a bug. I should keep debug until it is resolved. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4180694#4180694 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4180694

[jboss-user] [JBoss Portal] - Re: Dashboard: permission denied for role created using Sync

2008-10-06 Thread jsports
I use jboss portal 2.66ga, jboss4.23-jdk6 and mysql5. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4180695#4180695 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4180695 ___

[jboss-user] [JBoss Portal] - Re: Dashboard: permission denied for role created using Sync

2008-10-06 Thread jsports
I use cas as SSO solution. if logined as admin,and use admin portal, when turn back to the other portal from admin portal, the fatal error will happen. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4180696#4180696 Reply to the post :

[jboss-user] [JBoss Portal] - Re: Dashboard 403 error

2008-09-29 Thread JaasJaws
Hi I am trying to develop a Custom Login Module by extending AbstractServerLoginModule. I have implemented the necessary methods and the login() method returns a true or a false depending on the username/password provided. But the problem is that the returned true/false is being undone by

[jboss-user] [JBoss Portal] - Re: Dashboard rename page bug loses portlet state settings

2008-09-25 Thread [EMAIL PROTECTED]
Indeed it looks like a bug, could you file a Jira please ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4178800#4178800 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4178800 ___

[jboss-user] [JBoss Portal] - Re: Dashboard rename page bug loses portlet state settings

2008-09-25 Thread esmith1
OK thanks for response; JIRA filed as https://jira.jboss.org/jira/browse/JBPORTAL-2177 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4178807#4178807 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4178807

[jboss-user] [JBoss Portal] - Re: Dashboard rename page bug loses portlet state settings

2008-09-25 Thread [EMAIL PROTECTED]
Thanks ! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4178808#4178808 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4178808 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [JBoss Portal] - Re: Dashboard 403 error

2007-11-23 Thread bdaw
http://jira.jboss.com/jira/browse/JBPORTAL-1779 Related bug is fixed for 2.6.3. You can check with sources from svn. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4107312#4107312 Reply to the post :

[jboss-user] [JBoss Portal] - Re: Dashboard 403 error

2007-10-01 Thread NM-156
I found the piece that controls the dashboard link. Check here for solution: http://jboss.org/index.html?module=bbop=viewtopicp=4090281#4090281 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4090282#4090282 Reply to the post :

[jboss-user] [JBoss Portal] - Re: Dashboard 403 error

2007-09-27 Thread NM-156
Try this: http://www.jboss.com/index.html?module=bbop=viewtopict=119733 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4089382#4089382 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4089382

[jboss-user] [JBoss Portal] - Re: Dashboard 403 error

2007-09-27 Thread lucboudreau
This is not the problem, since I'm only using a custom login module for CAS SSO and a SynchronizingModule to copy the users in the database. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4089405#4089405 Reply to the post :

[jboss-user] [JBoss Portal] - Re: Dashboard 403 error

2007-09-27 Thread NM-156
I corrected my problem by taking a step back. I commented out my custom login module so that my login-config.xml file resembled the original portal download configuration, and then I tested. The dashboard link worked again. Then, I added my custom LoginModule back into login-config until I

[jboss-user] [JBoss Portal] - Re: Dashboard 403 error

2007-09-27 Thread NM-156
No. I am just describing what worked for me, and I am trying to offer a possible debugging technique for anybody who is stuck on this error. When you change the login-module settings back to those of the portal's default installation, does your dashboard link work again? If it does, you have

[jboss-user] [JBoss Portal] - Re: Dashboard 403 error

2007-09-27 Thread lucboudreau
Do you mean that the IdentityLoginModule is NOT optional, and that even if I want to use my own login module, it has to be in the login chain before any other module ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4089474#4089474 Reply to the post :

[jboss-user] [JBoss Portal] - Re: Dashboard portlet header out of place

2007-07-16 Thread kumarkn
hi, Please provide the solution for this problem so that we will be using it until the next release. Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064649#4064649 Reply to the post :

[jboss-user] [JBoss Portal] - Re: Dashboard portlet header out of place

2007-07-16 Thread [EMAIL PROTECTED]
get the source from SVN, (see the wiki) JBoss_Portal_Branch_2_6 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4064670#4064670 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064670

[jboss-user] [JBoss Portal] - Re: Dashboard portlet header out of place

2007-07-05 Thread [EMAIL PROTECTED]
Yes it is fixed in the 2.6 Branch. It happened on IE6 and IE7. Other fixed issues with those browser was about changing page in the dashboard and list of windows that are hidden by IE. Sorry for this. We will release a new version shortly that fixes this. Please, it is the good time to report

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-05-16 Thread [EMAIL PROTECTED]
Since it became a popular feature request, we made it simpler now by configuration. The code is in trunk and will be available in GA. (As of now it is configured in conf/config.xml) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4046151#4046151 Reply to the

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-05-15 Thread eagleIT
Did you understand what I wanted? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045694#4045694 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045694 ___ jboss-user mailing list

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-05-15 Thread [EMAIL PROTECTED]
You have several possibilities, the easiest (not the cleanest). Open: portal-core.war/WEB-INF/jsp/header/header.jsp Replace: | a href=%= loginURL %Login/a | with | a href=/portal/auth/dashboardLogin/a | That should work, let me know. View the original post :

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-05-15 Thread eagleIT
I have not the directory header. In portal-core.war/WEB-INF/jsp i have the follow directories : - admin - catalog - dashboard - login - role - test - user I have the version 2.6 beta. Maybe it's for that ... View the original post :

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-05-15 Thread [EMAIL PROTECTED]
Yep, actually i forgot if it is even in CR2, or if i added it after. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045716#4045716 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045716

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-05-15 Thread eagleIT
Thanks. I had not seen that there was a new version. I will see how it work ... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045793#4045793 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4045793

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-05-15 Thread eagleIT
I installed the CR2 version and I replaced what you said me but that does not work. The default page is always the portal default ... Did you have another possibility ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045814#4045814 Reply to the post :

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-05-15 Thread [EMAIL PROTECTED]
You probably failed in packaging or forgot to refresh the window. Make sure the link on login is really: http://localhost:8080/portal/auth/dashboard before you click on it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045819#4045819 Reply to the post :

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-04-25 Thread eagleIT
I'm sorry but I'm french so if you don't have understood that I've written, say me. Mickaƫl View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4040499#4040499 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4040499

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-04-25 Thread [EMAIL PROTECTED]
The personal dashboards are portals, so they can't be added in a portal. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4040503#4040503 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4040503

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-04-25 Thread eagleIT
ok. Thank you. So we can't associate a portal with a dashboard to make mitre personnalisable and others not personnalisable ?? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4040552#4040552 Reply to the post :

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-04-25 Thread [EMAIL PROTECTED]
What do you mean by 'mitre' ? Think of the dashboard as a personalizable portal. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4040555#4040555 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4040555

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-04-25 Thread eagleIT
In french it's 'onglet'. I want pages personnalisable ans others not personnalisable in the same portal. Do you have anderstood what I want to do ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4040557#4040557 Reply to the post :

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-04-25 Thread [EMAIL PROTECTED]
onglet se dit tab en anglais ;) I still don't get what you want, personalization has a too broad meaning. If you mean use the edit mode, then yes you can let a user from one role use the edit mode in some pages and not for some other pages, see the security settings. personalize Now if you

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-04-25 Thread eagleIT
And I also want to know if I can put the dashboard in portal default. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4040566#4040566 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4040566

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-04-25 Thread eagleIT
Ok. Thank you for onglet ! :) I think I badly expressed myself in the last message. Can I put the dashboard as portal default ?? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4040576#4040576 Reply to the post :

[jboss-user] [JBoss Portal] - Re: dashboard in portal default

2007-04-25 Thread [EMAIL PROTECTED]
Yes if you modify the PageCustomizerInterceptor and change the link to login to the dashboard (something like /portal/auth/dashboard), but we are doing changes in that right now so i'd rather spend time on getting it done ;) View the original post :

[jboss-user] [JBoss Portal] - Re: dashboard unavailable when going trough LDAP

2007-04-10 Thread engela
I had a similar problem a while ago (http://www.jboss.com/index.html?module=bbop=viewtopict=103675). Your users needs to have the role 'Authenticated'. I am using LDAP authentication as well. All my users have the role 'Authenticated'. Furthermore I have added all the roles I use in my LDAP

[jboss-user] [JBoss Portal] - Re: dashboard unavailable when going trough LDAP

2007-04-10 Thread ian.ouzounov
Problem solved. It works fine. dashboard is there for every user. Also for the problem where users info from ldap should match the info stored in the local db all you have to do is: in login-config.xml uncomment this code, and ldap will synchronize the db every time there is a new user. |

[jboss-user] [JBoss Portal] - Re: dashboard unavailable when going trough LDAP

2007-04-06 Thread ian.ouzounov
if someone can help, here is some more info on the same problem: I discovered that if a user is not registered with the database can not login even if the ldap module authentication passes. I'm using ldap-required and IdentityLoginModule - sufficient View the original post :

[jboss-user] [JBoss Portal] - Re: DashBoard

2007-02-13 Thread ravindra reddy
i am using MeshCMS open source product developed in java. we just required to deploy the war file in our server. but i am unable to resolve my problem. i wish to mention my requirement once again in edit dashboard option we can include any portlet instance available to our page. similarly

[jboss-user] [JBoss Portal] - Re: DashBoard

2007-02-11 Thread jimisola
Ravindra, What external CMS are you using - Alfresco? Not exactly sure that I understood what you wanted to do, but it might be something would be useful for others as well (read: myself). Would you care to explain it is that you want to do more precisely and also if you managed to fnd a

[jboss-user] [JBoss Portal] - Re: DashBoard

2007-02-10 Thread ravindra reddy
yh ok.. i will look into that View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4014074#4014074 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4014074 ___ jboss-user mailing list

[jboss-user] [JBoss Portal] - Re: DashBoard

2007-02-08 Thread [EMAIL PROTECTED]
download the source code and look at the core-cms source tree which contains the cms integration within the portal. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4013374#4013374 Reply to the post :