Package org.jboss.soa.dsp.ws

Examples of org.jboss.soa.dsp.ws.WSDLReference


 
   public WSDLReference createWSDLReference(BPELEngineImpl engine, QName processId, QName serviceName, String portName)
    {
      File targetWSDLFile = findWSDLFile(engine, processId, serviceName, portName);
      Definition wsdlDefinition = getWSDLDefinition(engine, processId, serviceName);
      return new WSDLReference(wsdlDefinition, targetWSDLFile.toURI());
    }
View Full Code Here


      log.warn("Endpoint does already exist: "
          + myRoleEndpoint.serviceName + "/"+myRoleEndpoint.portName);
    }
    else
    {
      WSDLReference wsdlReference = new WSDLHelper().createWSDLReference(engine, processId,
          myRoleEndpoint.serviceName, myRoleEndpoint.portName);

      try
      {
        final ClassLoader classLoader = JAXWSBindingContext.class.getClassLoader(); //Thread.currentThread().getContextClassLoader();
View Full Code Here

    }
  }
 
  private synchronized void initialize() {
 
      WSDLReference wsdlReference = new WSDLHelper().createWSDLReference(engine,
          metaData.getProcessId(), metaData.getServiceName(), metaData.getPortName());
      wsdlDefinition = wsdlReference.getDefinition();
      wsdlUrl = wsdlReference.getWsdlURL();
   
      this.messageAdapter = new SOAPMessageAdapter(this.wsdlDefinition, serviceName, port.getLocalPart());   
    isInitialized=true;
  }
View Full Code Here

TOP

Related Classes of org.jboss.soa.dsp.ws.WSDLReference

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.