use of javax.xml.ws.Service in project wildfly by wildfly.
the class EJBSignEncryptMultipleClientsTestCase method encryptedAndSignedRequestFromAlice.
@Test
public void encryptedAndSignedRequestFromAlice() throws Exception {
QName serviceName = new QName("http://www.jboss.org/jbossws/ws-extensions/wssecuritypolicy", "EJBEncryptSecurityService");
URL wsdlURL = new URL(baseUrl, "/jaxws-wsse-sign-encrypt-mc/EJBEncryptSecurityService?wsdl");
//use a new bus to avoid any possible clash with other tests
Service service = Service.create(wsdlURL, serviceName, new UseNewBusFeature());
ServiceIface proxy = (ServiceIface) service.getPort(ServiceIface.class);
setupWsse(proxy, "alice");
Assert.assertEquals("Secure Hello World!", proxy.sayHello());
}
use of javax.xml.ws.Service in project wildfly by wildfly.
the class EJBSignEncryptMultipleClientsTestCase method encryptedAndSignedRequestFromUntrustedMax.
/*
* Max's public key is not trusted in Bob's keystore
* Max's keystore contain's Bob's public key as trusted.
*/
@Test
public void encryptedAndSignedRequestFromUntrustedMax() throws Exception {
QName serviceName = new QName("http://www.jboss.org/jbossws/ws-extensions/wssecuritypolicy", "EJBEncryptSecurityService");
URL wsdlURL = new URL(baseUrl, "/jaxws-wsse-sign-encrypt-mc/EJBEncryptSecurityService?wsdl");
//use a new bus to avoid any possible clash with other tests
Service service = Service.create(wsdlURL, serviceName, new UseNewBusFeature());
ServiceIface proxy = (ServiceIface) service.getPort(ServiceIface.class);
setupWsse(proxy, "max");
try {
proxy.sayHello();
Assert.fail("Max shouldn't invoke this service");
} catch (SOAPFaultException ex) {
// expected failure because max isn't trusted
}
}
use of javax.xml.ws.Service in project wildfly by wildfly.
the class EJBSignEncryptMultipleClientsTestCase method encryptedAndSignedRequestFromJohn.
@Test
public void encryptedAndSignedRequestFromJohn() throws Exception {
QName serviceName = new QName("http://www.jboss.org/jbossws/ws-extensions/wssecuritypolicy", "EJBEncryptSecurityService");
URL wsdlURL = new URL(baseUrl, "/jaxws-wsse-sign-encrypt-mc/EJBEncryptSecurityService?wsdl");
//use a new bus to avoid any possible clash with other tests
Service service = Service.create(wsdlURL, serviceName, new UseNewBusFeature());
ServiceIface proxy = (ServiceIface) service.getPort(ServiceIface.class);
setupWsse(proxy, "john");
Assert.assertEquals("Secure Hello World!", proxy.sayHello());
}
use of javax.xml.ws.Service in project wildfly by wildfly.
the class SignEncryptMultipleClientsTestCase method encryptedAndSignedRequestFromJohn.
@Test
public void encryptedAndSignedRequestFromJohn() throws Exception {
QName serviceName = new QName("http://www.jboss.org/jbossws/ws-extensions/wssecuritypolicy", "EncryptSecurityService");
URL wsdlURL = new URL(baseUrl.toString() + "EncryptSecurityService?wsdl");
//use a new bus to avoid any possible clash with other tests
Service service = Service.create(wsdlURL, serviceName, new UseNewBusFeature());
ServiceIface proxy = (ServiceIface) service.getPort(ServiceIface.class);
setupWsse(proxy, "john");
Assert.assertEquals("Secure Hello World!", proxy.sayHello());
}
use of javax.xml.ws.Service in project wildfly by wildfly.
the class WebServiceReferences method initServiceRef.
private static UnifiedServiceRefMetaData initServiceRef(final DeploymentUnit unit, final UnifiedServiceRefMetaData serviceRefUMDM, final String type, final WSRefAnnotationWrapper annotation) throws DeploymentUnitProcessingException {
// wsdl location
if (!isEmpty(annotation.wsdlLocation())) {
serviceRefUMDM.setWsdlFile(annotation.wsdlLocation());
}
// ref class type
final Module module = unit.getAttachment(Attachments.MODULE);
final Class<?> typeClass = getClass(module, type);
serviceRefUMDM.setServiceRefType(typeClass.getName());
// ref service interface
if (!isEmpty(annotation.value())) {
serviceRefUMDM.setServiceInterface(annotation.value());
} else if (Service.class.isAssignableFrom(typeClass)) {
serviceRefUMDM.setServiceInterface(typeClass.getName());
} else {
serviceRefUMDM.setServiceInterface(Service.class.getName());
}
return serviceRefUMDM;
}
Aggregations