org.ow2.easywsdl.wsdl.api.Operation.getQName()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(3.2k)|赞(0)|评价(0)|浏览(182)

本文整理了Java中org.ow2.easywsdl.wsdl.api.Operation.getQName()方法的一些代码示例,展示了Operation.getQName()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Operation.getQName()方法的具体详情如下:
包路径:org.ow2.easywsdl.wsdl.api.Operation
类名称:Operation
方法名:getQName

Operation.getQName介绍

暂无

代码示例

代码示例来源:origin: org.ow2.petals/petals-message-exchange

if (operation.getQName() != null && operation.getPattern() != null) {
  meps.put(operation.getQName(), operation.getPattern());
} else {
  logger.warning("Invalid data in component description for operation '"
      + operation.getQName() + "' of service '" + serviceName + "', MEP is '"
      + operation.getPattern() + "'");

代码示例来源:origin: org.ow2.easywsdl/wsdl

bindingOperation.setQName(operation.getQName());
  bindingOperation.setMEP(SOAPMEPConstants.ONE_WAY);
bindingOperation.setSoapAction(operation.getQName().getNamespaceURI()
    + (operation.getQName().getNamespaceURI().endsWith(
        "/") ? "" : "/")
    + operation.getQName().getLocalPart().toString());

代码示例来源:origin: org.wso2.carbon.governance-extensions/org.wso2.carbon.governance.soap.viewer

String operationName = operation.getQName().getLocalPart();
List<WSDLEndpoint> currentWSDLEndpoints = new ArrayList<>();
int currentOperationIndex;

代码示例来源:origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

if(bOpItem.getQName().getLocalPart().equals(op.getQName().getLocalPart())) {
  bOp = bOpItem;

代码示例来源:origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

final QName faultName = new QName(op.getQName()
    .getNamespaceURI(), faultDef.getName());

代码示例来源:origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.tools.generator

om.setInputVariable(var);
om.setInterface(currentInterface.getQName());
om.setOperation(this.varInputMap.get(var).q.getQName().getLocalPart());

代码示例来源:origin: org.ow2.easywsdl/wsdl

bindingOperation.setQName(operation.getQName());
    .setSoapAction(operation.getQName().getNamespaceURI()
        + (operation.getQName().getNamespaceURI().endsWith(
            "/") ? "" : "/")
        + operation.getQName().getLocalPart().toString());

代码示例来源:origin: org.ow2.petals/petals-bc-soap

final AxisOperation genericOperation = new InOutAxisOperation(operation.getQName());
genericOperation.setMessageReceiver(soapContext.getPetalsReceiver());
          context.getLogger().warning("More than one part found for input "
              + input.getName()
              + "(operation " + operation.getQName()
              + "). If a received message does not start with the first WSDL declared part and there is no other way than using the SOAP message content to determine the operation (except for matching element name to operation name), then there will be an unsolvable ambiguity.");
        context.getLogger().warning("An element referenced by the input "
            + input.getName()
            + "(operation " + operation.getQName()
            + ") seems to be missing from the types present in the WSDL... skipping this input! If there is no other way than using the SOAP message content to determine the operation (except for matching element name to operation name), then there will be an unsolvable ambiguity.");

代码示例来源:origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.tools.generator

om.setInputVariable(var);
om.setInterface(currentInterface.getQName());
om.setOperation(this.varInputMap.get(var).getQName().getLocalPart());

相关文章