I can't see any of my endpoints in console.
JBoss 7.0.2 with own cxf spring configuration, standalone mode. Example of configuration:
bean annotations:
@WebContext(secureWSDLAccess=false)
@Stateless
@WebService(endpointInterface=<webservice_interface>)
webservice interface annotations:
@WebService
jbossws-cxf.xml:
<beans xmlns='http://www.springframework.org/schema/beans'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:beans='http://www.springframework.org/schema/beans'
xmlns:jaxws='http://cxf.apache.org/jaxws' xmlns:wsa='http://cxf.apache.org/ws/addressing'
xmlns:jms='http://cxf.apache.org/transports/jms' xmlns:soap='http://cxf.apache.org/bindings/soap'
xsi:schemaLocation='http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://cxf.apache.org/transports/jms http://cxf.apache.org/schemas/configuration/jms.xsd http://cxf.apache.org/bindings/soap http://cxf.apache.org/schemas/configuration/soap.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd'>
<jaxws:endpoint id='<BeanName>'
address='/<jar-name>/<BeanName>'
implementor='<BeanClassWithPackage>'
serviceName='ns0:BeanNameService'
xmlns:ns0='http://<reversed_bean_package>/'
endpointName='ns1:BeanNamePort'
xmlns:ns1='http://<reversed_bean_package>/'>
<jaxws:invoker>
<bean class='org.jboss.wsf.stack.cxf.JBossWSInvoker' />
</jaxws:invoker>
</jaxws:endpoint>
</beans>
I can access it by url and it works fine.
Is it a bug or an unimplemented feature?
It would be easier if Heiko updates http://community.jboss.org/wiki/SubsystemManagementOperations.
We would know what to expect and what should we report.
btw. now I'm not sure if EJB tab with session beans and message driven beans should be filled (it's empty on my server) or it's not implemented yet.