Could someone show me a working example of following implementation of
interface for both server and client with java Axis1.2rc?

public interface Echo
{
   public String echo(String s);
   public String echo_double(String s1, String s2);
}


public EchoImpl implements Echo
{
  ......
   public String echo(String s) { return s; }
   public String echo_double(String s1, String s2) { {return s1 + s2);
}
   ......
}

-Henry


**********************************************************
Electronic Mail is not secure, may not be read every day, and should not be used for 
urgent or sensitive issues.

Reply via email to