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.
- getAppRootNode
- getUserAppExtNotChangeTime
- getConfigurations
- getUserApp
- getLogLevel
- insertRoleInCache
- deleteConfiguration
- getEntitlements
- deleteCachedRole
- getUserAppNotChangeTime
- updateCachedProfiles
- reloadAppTreeById
- insertEntitlementsInCache
- deleteCachedProfiles
- logoutApp
- login
- getProfileObjects
- getProfileCollection
- getApplicationUsers
- insertProfilesInCache
- getAllEntitlementsNotChangeTime
- deleteCachedRole0
- updateCachedEntitlements
- loginExt
- getAppEntitlements
- invalidate
- getEntitlementsNotChangeTime
- getAllEntitlements
- saveConfiguration
- logout
- getUserAppExt
- setLogLevel
- getProfiles
- getEntitlements1
- getUsersByLabelPath
- getEntitlements0
- deleteCachedEntitlements
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>