Well this is a known bug http://jira.jboss.org/jira/browse/JBWS-1762 :-(
The problem is in your web.xml file which looks like:
...
| <servlet>
| <servlet-name>Hello</servlet-name>
| <servlet-class>org.jboss.wsf.stack.jbws.EndpointServlet</servlet-class>
| <init-param>
| <param-name>jboss.ws.endpoint</param-name>
| <param-value>org.jboss.test.ws.jaxrpc.jbws124.HelloJavaBean</param-value>
| </init-param>
| </servlet>
| ...
|
Change it in the following way and try to redeploy.
...
| <servlet>
| <servlet-name>Hello</servlet-name>
| <servlet-class>org.jboss.test.ws.jaxrpc.jbws124.HelloJavaBean</servlet-class>
| </servlet>
| ...
If you can use packaged version of wars and ears then use them otherwise you'll face this problem very frequently.
Richard
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4090105#4090105
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4090105
Hi
I'm a bit newbie so this may sound idiotic. I want to secure (SSL and XML-Signature) few of my web services that run on JBoss 4.0, but don't know how to do that? I know I could use eg. WSS4J and simple put SSL on, but don't know if that is the best way.
I'd also like to know waht's the common way to build web services that has xml-signature. Do I have to first create the wsdl manually and create the actual service? Is there some tutorial on this matter?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4090100#4090100
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4090100