[jboss-user] [EJB3] - Re: Problem during session bean calls since migration to JBoss 6 Final

jaikiran pai do-not-reply at jboss.com
Wed Jan 5 07:13:42 EST 2011


jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

"Re: Problem during session bean calls since migration to JBoss 6 Final"

To view the discussion, visit: http://community.jboss.org/message/578964#578964

--------------------------------------------------------------
I kind of remember running into something similar while working on some project. This is what I had done at that time:

<dependency>
                    <groupId>org.jboss.jbossas</groupId>
                    <artifactId>jboss-as-client</artifactId>
                    <version>6.0.0-SNAPSHOT</version>
                    <scope>runtime</scope>
                    <type>pom</type>
                    <exclusions>
                        <exclusion>
                            <groupId>org.jboss.security</groupId>
                            <artifactId>jbosssx-client</artifactId>
                        </exclusion>
                        <exclusion>
                            <groupId>org.jboss.security</groupId>
                            <artifactId>jbosssx</artifactId>
                        </exclusion>
                        
                    </exclusions>
                </dependency>
                
                <dependency>
                    <groupId>org.picketbox</groupId>
                    <artifactId>jbosssx-client</artifactId>
                    <version>3.0.0.CR2</version>
                    <scope>runtime</scope>
                    
                </dependency>

Note that I have excluded the jbosssx-client and jbosssx from being pulled in from jboss-as-client and instead added an explicit dependency on picketbox. (replace the SNAPSHOT reference with the appropriate Final version and also check what version of picketbox is shipped in 6.0 Final). At that time I did not have the time to dig into this deeper.
--------------------------------------------------------------

Reply to this message by going to Community
[http://community.jboss.org/message/578964#578964]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2029]

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/jboss-user/attachments/20110105/bd058a52/attachment.html 


More information about the jboss-user mailing list