Hi,
I have a web application deployed on JBoss 5.1.0 with a couple of webservices.
When i use the JBossWS console to see the registered service endpoints, all my webservices follow the same URL pattern:
http://my_machine:8080/some_default_name/webservice_name?wsdl
The problem is that i need to change the some_default_name part of the...
Is there a way to prevent jbossws/services from listing services currently deployed? I thought of securing it the way jmx-console is secured, i.e. password protected, but would that mean that web service consumers would have to authenticate too? Or is it just going to password-protect the web interface? Thanks!
...
I am trying to invoke a web service from within a Java application deployed to JBoss 4.2.3. When I exercise the code that is invoking the web service from within Eclipse, I get no problems. When I exercise the code in a standalone application outside of JBoss, I get no problems. When I deploy that code though I get the exception below...
I've been playing around with web services using jbossws-cxf. I don't think the issue is with the implementation I'm using but instead how the code is generated. Here is my pojo with the annotations for a web service.
package com.matt.test.ws;
import javax.jws.WebMethod;
import javax.jws.WebResult;
import javax.jws.WebService;
import j...