Community
Participate
Working Groups
var x=0;
<%
String platformProtocol = "platform:/resource";
String httpProtocol = "http://";
String httpsProtocol = "https://";
wsdlURLs_.removeAllElements();
Iterator ws = WebServiceFinder.instance().getWebServices();
WebServiceInfo wsInfo = (WebServiceInfo)ws.next();
String url = wsInfo.getWsdlURL();
// filter wsdl URLs with same project name as selected project
// only look at workspace URLs returned from the web service finder
if (url.startsWith(platformProtocol))
{
//strip off platformProtocol to look at the workspace path
wsdlURLs_.add(url);
}
// also add any http or https URLs returned
else if (url.startsWith(httpProtocol) || url.startsWith(httpsProtocol))
if (wsdlType == ActionInputs.WSDL_TYPE_SERVICE_INTERFACE)