[JBossWS] - JSR181 EJB endpoint with root contextRoot
by joff
Hi, I've got an EJB as a JSR181 endpoint, and I want the service to be accessible via a URL like this: http://hostname:8080/MyExampleService?wsdl
This is what I have so far:
@WebService(targetNamespace = "http://example.com", name="MyExample", serviceName="MyExampleService")
| @SOAPBinding(style=SOAPBinding.Style.RPC, use=SOAPBinding.Use.LITERAL)
| @Stateless
| @PortComponent(contextRoot="/", urlPattern="/MyExampleService")
| public class MyExampleServiceImpl implements Remote, MyExampleService {
| ...
| }
However, deploying it like this results in it apparently (according to the /jbossws/services page) being deployed to http://hostname//MyExampleService?wsdl, but when I click on it, it's gives a 404 error.
Is there any way to successfully get the webservice to deploy in the root?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4030427#4030427
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4030427
19Â years, 1Â month
[JBoss Messaging] - Deploying messaging in minimal server
by Russ Weeks
Hi,
I'd like to get some more information about this statement in the JBoss
Messaging User's Guide:
"currently works with a standard JBossAS 4.0.x, 4.2.x and JBoss 5.x
installation and also as a JBoss Microkernel-based standalone deployment."
This is largely due to my unfamiliarity with JBoss: what's the
difference between a Microkernel-based standalone deployment and the
'minimal' server configuration of JBossAS?
I would like to implement JMS messaging in my application using JBoss
Messaging, but I need to make this as lightweight as possible. I was
encouraged to see that the minimal server configuration is under 1Mb,
but the installation instructions in the User's Guide:
cd util
ant -f release-admin.xml
create a configuration with a 35Mb footprint. Is there any way to trim
this down?
Thanks,
Russ
19Â years, 1Â month