Package edu.indiana.extreme.xbaya

Examples of edu.indiana.extreme.xbaya.XBayaException


        } catch (RuntimeException e) {
            logger.caught(e);
            String message = "Error while waiting for a service to finish: "
                    + this.serviceInformation;
            this.notifier.invocationFailed(message, e);
            throw new XBayaException(message, e);
        } catch (Error e) {
            logger.caught(e);
            String message = "Unexpected error: " + this.serviceInformation;
            this.notifier.invocationFailed(message, e);
            throw new XBayaException(message, e);
        }
    }
View Full Code Here


        } catch (RuntimeException e) {
            logger.caught(e);
            String message = "Error in setting an input. name: " + name
                    + " value: " + value;
            this.notifier.invocationFailed(message, e);
            throw new XBayaException(message, e);
        } catch (Error e) {
            logger.caught(e);
            String message = "Unexpected error: " + this.serviceInformation;
            this.notifier.invocationFailed(message, e);
            throw new XBayaException(message, e);
        }
   
  }
View Full Code Here

        } catch (RuntimeException e) {
            logger.caught(e);
            String message = "The WSDL does not conform to the invoking service: "
                    + this.serviceInformation;
            this.notifier.invocationFailed(message, e);
            throw new XBayaException(message, e);
        } catch (Error e) {
            logger.caught(e);
            String message = "Unexpected error: " + this.serviceInformation;
            this.notifier.invocationFailed(message, e);
            throw new XBayaException(message, e);
        }
   
  }
View Full Code Here

        for (int i = 0; i < ret.size(); i++) {
          strRet[i] = ret.get(i);
        }
        return strRet;     
      }
            throw new XBayaException("Unknown type");
          
        } catch (RuntimeException e) {
            String message = "Error in getting output. name: " + name;
            throw new XBayaException(message, e);
        }
    }
View Full Code Here

    topologicalSort();
    LinkedList<CepNode> cepNodes = GraphUtil.getCEPNodes(this);
    for (CepNode node : cepNodes) {
      if (node instanceof CombineMultipleStreamNode) {
        if (((CombineMultipleStreamNode) node).getStreamName() == null) {
          throw new XBayaException(
              "CombineMultipleStreamNode need to configure the queries:"
                  + node.getName());
        }
      } else if (null == node.getQuery()) {
        throw new XBayaException(
            "CepNode need to configure the queries:"
                + node.getName());
      }
    }
View Full Code Here

      this.inputMessage = this.operation.createInputMessage();
      this.outputMessage = this.operation.createOutputMessage();
      this.faultMessage = this.operation.createFaultMessage();
    } catch (RuntimeException e) {
      String message = "The WSDL does not conform to the invoking service.";
      throw new XBayaException(message, e);
    }
  }
View Full Code Here

      }
      this.inputMessage.setObjectPart(name, value);
    } catch (RuntimeException e) {
      String message = "Error in setting an input. name: " + name
          + " value: " + value;
      throw new XBayaException(message, e);
    }
  }
View Full Code Here

      invoker.setOperation("deployServiceFromClass");
      invoker.setInput("classAsString", code);
      invoker.invoke();
      Object contextPath = invoker.getOutput("return");
    } catch (Exception e) {
      throw new XBayaException(e);
    }
   
  }
View Full Code Here

      // Value is a complex type. Return the whole XmlElement so that we
      // can set it to the next service as it is.
      return valueElement;
    } catch (RuntimeException e) {
      String message = "Error in getting output. name: " + name;
      throw new XBayaException(message, e);
    }
  }
View Full Code Here

            // }
        }

        if (invoker == null) {
            String message = "Cannot find an appropriate way to invoke the service";
            throw new XBayaException(message);
        }
        return invoker;
    }
View Full Code Here

TOP

Related Classes of edu.indiana.extreme.xbaya.XBayaException

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.