I have a webservice server, and there is 2 operations in the server's wsdl.
How can I use cxf consumer/provider su to invoke my webservice.
java code in server
======CustomerInClarity.java======
public class CustomerInClarity {
public void createCustomer(String xml) {
System.out.println("Customer:\n" + xml);
}
public void createAccount(String xml) {
System.out.println("Account:\n" + xml);
}
}
I rename CustomerInClarity.java to CustomerInClarity.jws, and copy it to
"TOMCAT_HOME\webapps\axis".
Please help me to config the xbean.xml in cxf-bc-su.
--
View this message in context:
http://www.nabble.com/How-to-use-cxf-su-in-this-case--tp23975272p23975272.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.