Mercurial > repos > ganjoo > webservice_toolsuite
view WebServiceToolWorkflow/WebServiceTool_input_url.py~ @ 0:e7482c82796e default tip
Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
author | ganjoo |
---|---|
date | Tue, 07 Jun 2011 17:34:26 -0400 |
parents | |
children |
line wrap: on
line source
import platform import os,sys from getMethods import * url = sys.argv[1] urllist = url.split('.') wadlDocument = Document() if urllist[len(urllist)-1]=='wadl' or urllist[len(urllist)-1]=='WADL': wadlDocument.getWADLMethods(url,sys.argv[2]) elif urllist[len(urllist)-1]=='wsdl' or urllist[len(urllist)-1]=='WSDL': wadlDocument.getWSDLMethods(url,sys.argv[2]) elif urllist[len(urllist)-1]=='sawadl' or urllist[len(urllist)-1]=='SAWADL': wadlDocument.getSAWADLMethods(url,sys.argv[2])