/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.ode.axis2; import org.apache.axiom.om.OMAbstractFactory; import org.apache.axiom.om.OMElement; import org.apache.axiom.om.OMFactory; import org.apache.axis2.AxisFault; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.xml.namespace.QName; /** * @author Matthieu Riou <mriou@apache.org> */ public class DummyService { private static final Logger log = LoggerFactory.getLogger(DummyService.class); public String hello(String in) { log.debug("#### IN HELLO ####"); return in + " world"; } public String longOperation(String in) { long delay = 120000; // == Properties.DEFAULT_MEX_TIMEOUT try { delay = Long.parseLong(in); } catch (NumberFormatException ignore) {} try { log.debug("#### IN LONG OP: "+delay+"ms ####"); Thread.sleep(delay); } catch (InterruptedException ignore) { } log.debug("#### WENT THROUGH ###"); return "Went through " + in; } public String faultTest(String in) throws DummyException, AxisFault { OMFactory factory = OMAbstractFactory.getOMFactory(); OMElement root = factory.createOMElement(new QName("http://axis2.ode.apache.org", "DummyException")); OMElement reason = factory.createOMElement(new QName("", "reason")); reason.setText("Something went wrong. Fortunately, it was meant to be."); root.addChild(reason); throw new AxisFault(new QName("http://schemas.xmlsoap.org/soap/envelope/", "Client"), "dummy reason", "dummy node", "dummy role", root); } public String noArgmentMethod(){ return "noArgmentMethod invocation was successfull"; } }