| http://www.w3.org/ns/prov#value | - The following is an example of a Java client using the HelloWorld sample JWS:import weblogic.jws.proxies.*; public class Main{ public static void main(String[] args) { try { HelloWorld_Impl proxy = new HelloWorld_Impl(); HelloWorldSoap soapProxy = proxy.getHelloWorldSoap(); System.out.println(soapProxy.Hello()); } catch (Exception e) { e.printStackTrace(); } }}Compile your source, including the JA
|