I am just wondering if it's necessary to add the web service session bean to ejb-jar.xml
here is what I saw in http://docs.jboss.org/jbossas/jboss4guide/r2/html/ch12.html <?xml version="1.0" encoding="UTF-8"?> | <ejb-jar xmlns="http://java.sun.com/xml/ns/j2ee" version="2.1" | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd"> | <display-name>chapter 12 EJB JAR</display-name> | <enterprise-beans> | <session> | <ejb-name>HelloBean</ejb-name> | <service-endpoint>org.jboss.chap12.hello.Hello</service-endpoint> | <ejb-class>org.jboss.chap12.hello.HelloBean</ejb-class> | <session-type>Stateless</session-type> | <transaction-type>Container</transaction-type> | </session> | </enterprise-beans> | <assembly-descriptor> | <method-permission> | <unchecked/> | <method> | <ejb-name>HelloBean</ejb-name> | <method-name>*</method-name> | </method> | </method-permission> | <container-transaction> | <method> | <ejb-name>HelloBean</ejb-name> | <method-name>*</method-name> | </method> | <trans-attribute>Required</trans-attribute> | </container-transaction> | </assembly-descriptor> | </ejb-jar> also it seems a webservice.xml is needed.. do you have all these in place? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3962857#3962857 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3962857 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
