Package de.iritgo.aktera.test

Examples of de.iritgo.aktera.test.WebserviceRequest


   * Try to access the echo webservice
   */
  @Test
  public void callEchoWebservice() throws Exception
  {
    WebserviceRequest request = createWebserviceRequest("http://aktera.iritgo.de/webservices/webservices", "echo",
            "admin", "admin");
    Object result = request.withStringParam("name", "alice").withStringParam("message", "How art thou?").send();
    assertEquals("Hello alice! How art thou?", result.toString());

  }
View Full Code Here

TOP

Related Classes of de.iritgo.aktera.test.WebserviceRequest

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.