Package org.jboss.wsf.spi.management

Examples of org.jboss.wsf.spi.management.JMSEndpointResolver


   protected void processSOAPMessage(Destination destination, InputStream inputStream, OutputStream outStream) throws SOAPException, IOException, RemoteException
   {
      SPIProvider spiProvider = SPIProviderResolver.getInstance().getProvider();
      EndpointRegistry epRegistry = spiProvider.getSPI(EndpointRegistryFactory.class).getEndpointRegistry();

      JMSEndpointResolver resolver = spiProvider.getSPI(JMSEndpointResolver.class);
      resolver.setDestination(destination);
      Endpoint endpoint = epRegistry.resolve(resolver);

      if (endpoint == null)
         throw new IllegalStateException("Cannot find endpoint for destination: " + destination);
View Full Code Here

TOP

Related Classes of org.jboss.wsf.spi.management.JMSEndpointResolver

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.