• Primefaces 3.3, POM and Jboss as EAP 5.1

    I'm working with primefaces 3.3 and JSF 2.0. And the structure of the pom below, when I generate a war, run (work) only on tomcat 7.0.39. I would like to know what I need to change the pom for the war also run in the ...
    Profile Photo
    last modified by ezequielll
  • Absolute path in pages.xml

    Is it possible to specify in pages.xml an absoulte path in view-id. Something like this: <exception class="org.jboss.seam.security.AuthorizationException">         <end-co...
    Profile Photo
    created by tom_violence
  • s:graphicImage does not work properly in Seam 3

    Josh,    The <s:graphicImage> tag is a Seam 2 tag which allows you to pull an image from a byte stream, which of course can ultimately come from Hibernate, etc.  I am currently building a web app...
    Profile Photo
    last modified by tjb25
  • Can we make a call to seam component(only java bean) from java script

    I have a java bean extends EntityQuery.   @Name("fileList") public class FileListBean extends EntityQuery<FileMetaInfo> implements FileList,Serializable { }   I cant make it stateless as we get below...
    Profile Photo
    last modified by ranadheer_machineni
  • jaasAuthenticator not found

    I have installed the latest jBPM distribution and when I change my beans.xml to use the JAAS authentication, I get the following error:   {noformat} 12:08:58,454 ERROR [org.jboss.seam.security.IdentityImpl] (ht...
    Profile Photo
    last modified by davidtwebb
  • Does jboss seam 1.1 works with JSF 1.2?

    Hi All   This is my first post so forgive me if there are any mistakes.   We have a legacy application which uses jboss seam 1.1 and JSF 1.2. The application itself does not contain any libs for the JSF 1...
    Profile Photo
    last modified by ashishjmeshram
  • How do I configure a Hibernate Interceptor in Seam?

    I am trying to implement Hibernate db auditing like http://www.hibernate.org/48.html (but adding field, oldValue, and newValue), and I need to create the Session with my custom Hibernate Interceptor, which is given th...
    Profile Photo
    last modified by jakec
  • Help required to Configure failover for Jboss Seam mail

    Hello, I need to implement failover functionality for sending mails using jboss seam. I tried to configure two JNDINames in mail-service.xml. But I'm not getting how i can set 2nd JNDI name in code. Also, I'm not ge...
    Profile Photo
    last modified by rohitpatidar
  • how to get user's password value after success authenticate?

    i want get user's password after authenticate.   in my back class i insert this code. ================= @Inject @SessionScoped Credentials credentials; ... ... ... System.out.println(((PasswordCredential) ...
    Profile Photo
    last modified by shenlanemo
  • why typesafe security binding dont work without @Model annotations?

    the security-authorization  is an official examples in seam-3.1.0.Final.   this example have a class named PrivilegedActions to demonstrate typesafe security binding.   for example, if login user dosn...
    Profile Photo
    created by shenlanemo
  • Problem with adding jbpm in seam project

    I'm still learning seam and jbpm and I probably made some error in configuration of jbpm. I add jbpm-3.1.4.jar and jboss-el.jar in my lib directory, create one jbpm process, hiberntate.cfg.xml and jbpm.cfg.xml , but ...
    Profile Photo
    last modified by predragp
  • not able to integrate simple Jbpm  todo example in seam 2.2.1

    I am new to jBpm trying to  integrate JBPM in an  seam application .   i am getting error   ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/Ticket-book]] (MSC service t...
    Profile Photo
    created by nasirnaseem
  • Message to all application users

    Suppose I want an admin user from an admin page to be able to set a short-lived alert message that would appear in a view for all users of the application who load that view. How might one implement that? I looked at ...
    Profile Photo
    created by joerrr
  • seam-faces and richfaces dependencies can be part of EJB module ?????

    hi,   I was working on my EAR project and was getting some exceptions while creating ApplicationFactory ( Deployment Time ) .   1. SeamApplicationFactory :-   2. org.richfaces.context.SkinningExtern...
    Profile Photo
    last modified by rahul22
  • org.jboss.seam.jsf.SeamApplicationFactory is no javax.faces.

    Help I am stuck. I am trying to put together a seam (seam-1.1.0.CR2) portlet with myfaces1.1.4. My portlet class is (portlet.xml) <portlet-class> org.apache.myfaces.portlet.MyFacesGenericPortlet </portlet-...
    Profile Photo
    last modified by hurzeler
  • seam-remoting call identity.logout occur {inject an HttpSession} error

    i use seam-remoting call identity.login and identity.logout.   call identity.login run correct,but call identity.logout run to a error.   my  Authenticator Class below. ------------------------------...
    Profile Photo
    last modified by shenlanemo
  • identity.logout run to error " Attempted to inject an HttpSession before it has been initialized"

    the enviroment is: jboss 7.1.1.final seam3.1.0.final   this is login page:home.xhtml ------------------------------------ <?xml version="1.0" encoding="UTF-8"?> <html xmlns="http://www.w3.org/1999/xh...
    Profile Photo
    last modified by shenlanemo
  • Seam3  Security - JpaIdentityStore Null pointer exception

    Hi all, I'm trying to create a simple applications uses a idm console module with seam3 and picketlink (seam 3.1.1 and picketlink-idm-core-1.5.0Alpha2). In particulare i've recivede the following message error mes...
    Profile Photo
    last modified by gmodeldriven
  • Seam-Mail 3.1. and pom dependency problem

    Hello,   I tried to install seam mail in my  J2ee project with Eclipse Indigo and JBoss 7.1.1. I use embedded maven 3.0.2.   Using http://docs.jboss.org/seam/3/mail/snapshot/reference/en-US/html_singl...
    Profile Photo
    last modified by ruenagel_frank
  • how to get AuthenticationStatus in a jsp page?

    i use jsp page,not jsf.   i want to know AuthenticationStatus in a jsp page.   for example, i inject HttpSession session into Authenticator Class. --------------------------------------------------- publ...
    Profile Photo
    created by shenlanemo