http://gfies.wlb.nam.nsroot.net/esws/es

Welcome to the WebLogic Webservice standard testing home page.

 

The following operations are supported. For a formal definition, please review the Service Description.

 


 

Recommendation:

Example code that invokes this service using generated stub is given below:


import {package}.es;
    ...

    String wsdlUrl = "http://gfies.wlb.nam.nsroot.net:80/esws/es?WSDL"; 
    es service = new es_Impl( wsdlUrl );
    esPort port = service.getesPort();

    result = port.getAppRootNode( ... );


To generate a client stub for this Web Service use the ant task given below:


<target name="stubgen" >

      <property name="wsdlUrl" 
          value="http://gfies.wlb.nam.nsroot.net:80/esws/es?WSDL" />

      <clientgen wsdl="${wsdlUrl}" packageName="com.myco.myservice.client"
        clientJar="myclient.jar" />

    </target>