[jboss-user] [JBoss Portal Users] - Need to pass parameters to Portlet URL when

2009-09-01 Thread rammyramkumar
Here is the situation iam facing.

Iam using JBoss Portal & Richfaces. 

I have a  which when clicked will open a page in new window. 

Now when i click this button i need to add a query string to the portlet URL. 

Then i need to read this query string in the index.jsp

Is there any way we can do this?

thanks in advance.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4252870#4252870

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4252870
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: Alfresco Portlet.

2008-11-07 Thread rammyramkumar
even i want the link to download the alfresco portlet. please do help me in 
this issue. I think i cant anywhere in the jboss forum in this regards as well 
as in alfresco forums.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4187629#4187629

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4187629
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: JBOSS-Alfresco Integration

2008-11-04 Thread rammyramkumar
Can you please tell me the steps for integrating the alfresco with jboss portal 
server.? This will be of great help. Is there any documents so that you share 
with me.


thanks in advance

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4186779#4186779

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4186779
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: JBoss Portal 2.6.1 bundled - null pointer exception

2008-06-13 Thread rammyramkumar
yeah iam also getting the same prob in jboss portal 2.6.3GA  what should i 
do ? 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4157987#4157987

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4157987
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: error when changing identity data source

2008-06-08 Thread rammyramkumar
yeah me too need to have my own database to be looked up by the portal instead 
of its own PortalDS . i changed the ds.xml in the deploy folder to my specific 
db and i changed the datasource path and other details in that xml but how to 
change the schema to match my DB and other details.


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4156497#4156497

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4156497
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: How to get Ldap informations?

2008-05-24 Thread rammyramkumar
hi 

this is my configuration in login-config.xml file . it is working for me. May 
be this will be of some help to you.

http://www.jboss.org/j2ee/dtd/security_config.dtd";>










com.sun.jndi.ldap.LdapCtxFactory
ldap://localhost:10389/
simple
cn=Directory 
Manager
password
ou=People,dc=example,dc=com
(uid={0})
ou=Roles,dc=example,dc=com
(member={1})
cn
-1
1
SUBTREE_SCOPE
false


true
true
Authenticated
User
java:/portal/UserModule
java:/portal/RoleModule
java:/portal/MembershipModule
java:/portal/UserProfileModule





this will enable you authenticate against LDAP using the Jboss portal login. 

Code in my part is 

/**
 * 
 * @return Map of Identity Modules
 */
public Map getLDAPModules()
{
Map modulesMap = new HashMap();
if (!checkConfig.equalsIgnoreCase("true")) 
{   
try
{
UserModule  usermodule  = (UserModule) new 
InitialContext().lookup("java:/portal/UserModule");
RoleModule roleModule =(RoleModule) new 
InitialContext().lookup("java:/portal/RoleModule");
UserProfileModule userProfileModule  = 
(UserProfileModule) new 
InitialContext().lookup("java:/portal/UserProfileModule");
MembershipModule membershipModule = 
(MembershipModule) new InitialContext().lookup("java:/portal/MembershipModule");


modulesMap.put(User.USER_MODULE, usermodule);
modulesMap.put(User.ROLE_MODULE, roleModule);
modulesMap.put(User.USER_PROFILE_MODULE, 
userProfileModule);
modulesMap.put(User.MEMBERSHIP_MODULE, 
membershipModule);

return modulesMap;

}   
catch (NamingException e) 
{
e.printStackTrace();
}
catch(Exception e){
e.printStackTrace();
}
}
return null;
}
// this will fetch you the Identity Modules and using this you can get the 
necessary details from LDAP using the methods available in each Modules.

Good Luck...happy coding 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4153156#4153156

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4153156
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: SHARING THE SESSION BETWEEN THE PORTLETS DEPLOYED AS SEP

2008-05-08 Thread rammyramkumar
Thanks again , my situation is i wanted all the portlets in separate war files 
to know the currently logged in user and his associated roles. iam 
authenticating against LDAP and also getting details from LDAP. 

so how i can make all the portlets to get this details? Does individual 
Portlets should handle this? 

so when multiple user logs will this be a show stopper ? 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4149559#4149559

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4149559
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: SHARING THE SESSION BETWEEN THE PORTLETS DEPLOYED AS SEP

2008-05-08 Thread rammyramkumar
thanks for the immediate reply to the post. do u think is there any work around 
for this scenario? Does any tweak in the configuration help me in this regards?

thanks again.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4149550#4149550

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4149550
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - SHARING THE SESSION BETWEEN THE PORTLETS DEPLOYED AS SEPARAT

2008-05-08 Thread rammyramkumar
i have this situation where i need to share the session between the two 
portlets which are deployed as two different war files. 

i tried putting the values in the APPLICATION_SCOPE but it is returning null 
when i try to retrieve the data from session in the other portlet.

Any ideas regarding this ?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4149537#4149537

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4149537
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Security & JAAS/JBoss] - SHARING SESSION BETWEEN THE PORTLETS. PROBLEM WITH APPLICATI

2008-05-08 Thread rammyramkumar
hi 

i have this scenario , i have different portlets deployed as a separate war 
files and i like to share datas which i intend to keep it in the session. i 
want to share the data between the portlets. 

i tried APPLICATION_SCOPE , i.e i get the session from the request object in 
Portlet 1 and set values in the APPLICATION_SCOPE there and i try to get it the 
Portlet 2 from the session(which again i get it from the request object).

But iam getting the null in the portlet 2. 

what am i do for this to happen.

Any ideas?





View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4149529#4149529

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4149529
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user