| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395 |
- <?xml version="1.0" encoding="utf-8"?>
- <services xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <service>
- <wsdl>http://upload.eraserver.net/circle24/autoloan.asmx?wsdl</wsdl>
- <name>autoloanTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.kannadakasturi.com/WebServices/kannadakasturiwebservice.asmx?WSDL</wsdl>
- <name>kannadakasturiwebserviceTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.esynaps.com/WebServices/eSynapsSearch.asmx?WSDL</wsdl>
- <name>eSynapsSearchTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.codemechanisms.co.uk/WebServices/UNSPSC.asmx?WSDL</wsdl>
- <name>UNSPSCTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xmlme.com/WSCustNews.asmx?WSDL</wsdl>
- <name>WSCustNewsTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://arcweb.esri.com/services/v2/Proximity.wsdl</wsdl>
- <name>ProximityTest</name>
- <serverType>Netscape-Enterprise/6.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://addison.ra.cwru.edu/orc/calendar_copy/server.php?wsdl</wsdl>
- <name>serverTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET,PHP/4.3.1</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://xml.redcoal.net/SMSSOAP/xmlserver.wsdl</wsdl>
- <name>xmlserverTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/ft/FastTax.asmx?WSDL</wsdl>
- <name>FastTaxTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://xml.nig.ac.jp/wsdl/ClustalW.wsdl</wsdl>
- <name>ClustalWTest</name>
- <serverType>GLUE/3.2.1,Apache Coyote/1.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.marotz.se/scripts/searchperson.exe/wsdl/ISearchSwedishPerson</wsdl>
- <name>ISearchSwedishPersonTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xmlme.com/WSDailyXml.asmx?WSDL</wsdl>
- <name>WSDailyXmlTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.dev1.eraserver.net/REFLECTIONIT/Html2xml.asmx?WSDL</wsdl>
- <name>Html2xmlTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.barnaland.is/dev/puki.asmx?WSDL</wsdl>
- <name>pukiTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.hkwizard.com/WeatherService.asmx?wsdl</wsdl>
- <name>WeatherServiceTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.dl-me.com/webservices/dic2.asmx?WSDL</wsdl>
- <name>dic2Test</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xignite.com/xoptions.asmx?WSDL</wsdl>
- <name>xoptionsTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://wsdl.wsdlfeeds.com/holidays.cfc?wsdl</wsdl>
- <name>holidaysTest</name>
- <serverType>Apache/1.3.27 (Unix) (Red-Hat/Linux) JRun/4.0 mod_ssl/2.8.12 OpenSSL/0.9.6b DAV/1.0.3 PHP/4.1.2 mod_perl/1.26 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://scores.serviceobjects.com/CupScores.asmx?WSDL</wsdl>
- <name>CupScoresTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://soap.systinet.net/demos/Newsfeed/wsdl</wsdl>
- <name>NewsfeedTest</name>
- <serverType>Systinet WASP Server for Java/4.6.1 (Java/1.4.2; Linux/2.4.20-24.7) # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xmlme.com/WSElectronics.asmx?WSDL</wsdl>
- <name>WSElectronicsTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://arcweb.esri.com/services/v2/AddressFinder.wsdl</wsdl>
- <name>AddressFinderTest</name>
- <serverType>Netscape-Enterprise/6.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xmlme.com/WSVideoGames.asmx?WSDL</wsdl>
- <name>WSVideoGamesTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/braille.asmx?WSDL</wsdl>
- <name>brailleTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws.digiposs.com/WorldTime.jws?wsdl</wsdl>
- <name>WorldTimeTest</name>
- <serverType>Apache/2.0.43 (Win32) mod_ssl/2.0.43 OpenSSL/0.9.6g PHP/4.3.0 mod_jk/1.2.2-beta-1 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.cosme.nu/services/pop.php?wsdl</wsdl>
- <name>popTest</name>
- <serverType>Apache/1.3.26 (Unix) mod_ssl/2.8.9 OpenSSL/0.9.6a ApacheJServ/1.1.2 PHP/4.3.1 # PHP/4.3.1</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.marotz.se/PGPKeyServer/PGPKeyServiceX.exe/wsdl/IPGPKeyServer</wsdl>
- <name>IPGPKeyServerTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.alanbushtrust.org.uk/soap/compositions.wsdl</wsdl>
- <name>compositionsTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://glkev.webs.innerhost.com/glkev_ws/businessnews.asmx?WSDL</wsdl>
- <name>businessnewsTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://services.develop.co.za/GetLocalTime.asmx?WSDL</wsdl>
- <name>GetLocalTimeTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/ln/lotterynumbers.asmx?WSDL</wsdl>
- <name>lotterynumbersTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.blackstoneonline.com/webservices/dispenser.xml</wsdl>
- <name>dispenserTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.esynaps.com/WebServices/DailyDiblert.asmx?WSDL</wsdl>
- <name>DailyDiblertTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://soap.achchex.com/exec/achsoap.dll/wsdl/IACHSOAP</wsdl>
- <name>IACHSOAPTest</name>
- <serverType>Apache/2.0.43 (Win32) mod_ssl/2.0.43 OpenSSL/0.9.6g # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://transform.dataconcert.com/transform.wsdl</wsdl>
- <name>transformTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://icuisine.net/webservices/RecipeService.asmx?WSDL</wsdl>
- <name>RecipeServiceTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.bitounis.com/WebEvents/events.asmx?WSDL</wsdl>
- <name>eventsTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.OneOutBox.com/wsdl/FreeFaxService.wsdl</wsdl>
- <name>FreeFaxServiceTest</name>
- <serverType>Apache/1.3.27 (Unix) PHP/4.2.3 FrontPage/5.0.2.2510 Rewrit/1.1a # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.ebi.ac.uk/xembl/XEMBL.wsdl</wsdl>
- <name>XEMBLTest</name>
- <serverType>Apache/1.3.12 (Unix) ApacheJServ/1.1 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xmethods.net/sd/2001/CATrafficService.wsdl</wsdl>
- <name>CATrafficServiceTest</name>
- <serverType>Enhydra-MultiServer/3.1.1b1 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.foxcentral.net/foxcentral.wsdl</wsdl>
- <name>foxcentralTest</name>
- <serverType> # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.cosme.nu/services/convert.php?wsdl</wsdl>
- <name>convertTest</name>
- <serverType>Apache/1.3.26 (Unix) mod_ssl/2.8.9 OpenSSL/0.9.6a ApacheJServ/1.1.2 PHP/4.3.1 # PHP/4.3.1</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.ripedev.com/webservices/ZipCode.asmx?WSDL</wsdl>
- <name>ZipCodeTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws.cdyne.com/psaddress/addresslookup.asmx?wsdl</wsdl>
- <name>addresslookupTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.strikeiron.com/scripts/statistics.asmx?WSDL</wsdl>
- <name>statisticsTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.bitounis.com/W3CParser/LogFileParser.asmx?WSDL</wsdl>
- <name>LogFileParserTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/NAICS.asmx?wsdl</wsdl>
- <name>NAICSTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws.cdyne.com/emailverify/ev.asmx?wsdl</wsdl>
- <name>evTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://62.212.78.36/cgi-bin/WagAddressServerSingle.exe/wsdl/IWagAddressServerSingle</wsdl>
- <name>IWagAddressServerSingleTest</name>
- <serverType>Apache/1.3.19 (Win32) # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://slashdemocracy.org/links/ws4gotze.wsdl</wsdl>
- <name>ws4gotzeTest</name>
- <serverType>Apache # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://java.rus.uni-stuttgart.de/quiz/quiz.wsdl</wsdl>
- <name>quizTest</name>
- <serverType>Microsoft-IIS/5.0,GLUE/3.2.3 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.zanetti-dev.com/scripts/zpop3ws.exe/wsdl/IZPOP3</wsdl>
- <name>IZPOP3Test</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.gama-system.com/webservices/stockquotes.asmx?wsdl</wsdl>
- <name>stockquotesTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/barcode.asmx?WSDL</wsdl>
- <name>barcodeTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://service.graphmagic.com/GMService/GraphMagic.asmx?wsdl</wsdl>
- <name>GraphMagicTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://developerdays.com/cgi-bin/tempconverter.exe/wsdl/ITempConverter</wsdl>
- <name>ITempConverterTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/icd10.asmx?WSDL</wsdl>
- <name>icd10Test</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.marotz.se/scripts/SlashdotHeadlines.exe/wsdl/ISlashdotHeadlineProvider</wsdl>
- <name>ISlashdotHeadlineProviderTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl</wsdl>
- <name>CurrencyExchangeServiceTest</name>
- <serverType> # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://demo.soapam.com/services/FedEpayDirectory/FedEpayDirectoryService.wsdl</wsdl>
- <name>FedEpayDirectoryServiceTest</name>
- <serverType>NuWave Technologies SOAP/AM(tm) Server - Version 1.0.4002 (SP2) # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://webservices.eraserver.net/zipcoderesolver/zipcoderesolver.asmx?WSDL</wsdl>
- <name>zipcoderesolverTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/icd9toicd10.asmx?WSDL</wsdl>
- <name>icd9toicd10Test</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.ebob42.com/cgi-bin/Romulan.exe/wsdl/IRoman</wsdl>
- <name>IRomanTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.sidespace.com/ws/fission/fissiondotnet.php?wsdl</wsdl>
- <name>fissiondotnetTest</name>
- <serverType>Apache/1.3.29 # PHP/4.3.4</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.x-ws.de/cgi-bin/bork/service.wsdl</wsdl>
- <name>serviceTest</name>
- <serverType>Apache/1.3.27 (Linux/SuSE) PHP/4.3.4 mod_perl/1.27 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.esynaps.com/WebServices/eSynapsMonitor.wsdl</wsdl>
- <name>eSynapsMonitorTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xmlme.com/WSAmazonBox.asmx?WSDL</wsdl>
- <name>WSAmazonBoxTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.west-wind.com/wconnect/soap/wwhelpservice.wsdl</wsdl>
- <name>wwhelpserviceTest</name>
- <serverType> # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.oakleaf.ws/cfrsectws/cfrsectws.asmx?wsdl</wsdl>
- <name>cfrsectwsTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://webservices.mp3.com/MP3Charts.wsdl</wsdl>
- <name>MP3ChartsTest</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.bitounis.com/RSAFunctions/RSAFuncs.asmx?WSDL</wsdl>
- <name>RSAFuncsTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://soap.systinet.net/demos/RpmFinder/wsdl</wsdl>
- <name>RpmFinderTest</name>
- <serverType>Systinet WASP Server for Java/4.6.1 (Java/1.4.2; Linux/2.4.20-24.7) # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.ebob42.com/cgi-bin/DrBobsClinic.exe/wsdl/IHeadline</wsdl>
- <name>IHeadlineTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/periodictable.asmx?wsdl</wsdl>
- <name>periodictableTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.maillocate.com/soap/index.php?wsdl</wsdl>
- <name>indexTest</name>
- <serverType>Apache/2.0.40 (Red Hat Linux) # PHP/4.2.2</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://freene.dynip.com/RentDB2/RentDB2.asmx?wsdl</wsdl>
- <name>RentDB2Test</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://iis1.grantparksoftware.com:8080/gps/pos_public.asmx?WSDL</wsdl>
- <name>pos_publicTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.framewerks.com/WebServices/fWArticleService/fwArticles.asmx?WSDL</wsdl>
- <name>fwArticlesTest</name>
- <serverType>Microsoft-IIS/5.0 Geobytes-GeoSelect/2.1.0.1 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://sandbox.grandcentral.com/services/reports?WSDL</wsdl>
- <name>reportsTest</name>
- <serverType>Apache/1.3.29 (Unix) mod_jk/1.2.0 mod_perl/1.29 mod_ssl/2.8.16 OpenSSL/0.9.7c # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/CurrencyConvertor.asmx?wsdl</wsdl>
- <name>CurrencyConvertorTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.x-ws.de/cgi-bin/msn/imstatus.wsdl</wsdl>
- <name>imstatusTest</name>
- <serverType>Apache/1.3.27 (Linux/SuSE) PHP/4.3.4 mod_perl/1.27 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.esynaps.com/WebServices/MsProxy.asmx?WSDL</wsdl>
- <name>MsProxyTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.siliconllama.com/services/wsdl/ISOcode2shortformatService.wsdl</wsdl>
- <name>ISOcode2shortformatServiceTest</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/usweather.asmx?WSDL</wsdl>
- <name>usweatherTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.forta.com/cf/tips/syndicate.cfc?wsdl</wsdl>
- <name>syndicateTest</name>
- <serverType>Apache/2.0.43 (Red Hat Linux) # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://clientservice.muse.net/ClientService.asmx?WSDL</wsdl>
- <name>ClientServiceTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.flash-db.com/services/ws/siteInspect.wsdl</wsdl>
- <name>siteInspectTest</name>
- <serverType>Apache/1.3.28 (Unix) mod_auth_passthrough/1.8 mod_bwprotect/0.2 mod_bwlimited/1.2 PHP/4.3.3 mod_log_bytes/1.2 FrontPage/5.0.2.2634 # PHP/4.3.3</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/stockquote.asmx?WSDL</wsdl>
- <name>stockquoteTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.worldwidedesktop.com/spellcheck/spellcheckservice.asmx?wsdl</wsdl>
- <name>spellcheckserviceTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws.acrosscommunications.com/TAP.asmx?WSDL</wsdl>
- <name>TAPTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xignite.com/xsecurity.asmx?WSDL</wsdl>
- <name>xsecurityTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.codebump.com/services/placelookup.asmx?wsdl</wsdl>
- <name>placelookupTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.aspiringgeek.com/cfc/keyword/sekeyword.cfc?wsdl</wsdl>
- <name>sekeywordTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.x-ws.de/cgi-bin/eliza/chat.wsdl</wsdl>
- <name>chatTest</name>
- <serverType>Apache/1.3.27 (Linux/SuSE) PHP/4.3.4 mod_perl/1.27 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws.cdyne.com/FontToGraphic/ftg.asmx?wsdl</wsdl>
- <name>ftgTest</name>
- <protocols />
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/pc/packcost.asmx?WSDL</wsdl>
- <name>packcostTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://soap.systinet.net/demos/ZVONSearch/wsdl</wsdl>
- <name>ZVONSearchTest</name>
- <serverType>Systinet WASP Server for Java/4.6.1 (Java/1.4.2; Linux/2.4.20-24.7) # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.richsolutions.com/RichPayments/RichCardValidator.asmx?WSDL</wsdl>
- <name>RichCardValidatorTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ww6.borland.com/webservices/BorlandBabel/BorlandBabel.exe/wsdl/IBorlandBabel</wsdl>
- <name>IBorlandBabelTest</name>
- <serverType>Microsoft-IIS/4.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.aspxpressway.com/maincontent/webservices/piglatin.asmx?wsdl</wsdl>
- <name>piglatinTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.cosme.nu/services/dns.php?wsdl</wsdl>
- <name>dnsTest</name>
- <serverType>Apache/1.3.26 (Unix) mod_ssl/2.8.9 OpenSSL/0.9.6a ApacheJServ/1.1.2 PHP/4.3.1 # PHP/4.3.1</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.cs.uga.edu/~sent/xmethods/CountryInfoLookup.wsdl</wsdl>
- <name>CountryInfoLookupTest</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://live.capescience.com/wsdl/FOPService.wsdl</wsdl>
- <name>FOPServiceTest</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.swanandmokashi.com/HomePage/WebServices/StockQuotes.asmx?WSDL</wsdl>
- <name>StockQuotesTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.scdi.org/~avernet/webservice/yim.wsdl</wsdl>
- <name>yimTest</name>
- <serverType>Apache/1.3.26 (Unix) Debian GNU/Linux # PHP/4.1.2</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://beta2.eraserver.net/webservices/mxchecker/mxchecker.asmx?WSDL</wsdl>
- <name>mxcheckerTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws.cdyne.com/whoisquery/whois.asmx?wsdl</wsdl>
- <name>whoisTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws.interfax.net/dfs.asmx?WSDL</wsdl>
- <name>dfsTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xignite.com/xworldnews.asmx?WSDL</wsdl>
- <name>xworldnewsTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xmlme.com/WSDailyNet.asmx?WSDL</wsdl>
- <name>WSDailyNetTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://webservices.matlus.com/scripts/sessionservice.dll/wsdl/IMsSessionBrokerService</wsdl>
- <name>IMsSessionBrokerServiceTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xmethods.net/sd/2001/BNQuoteService.wsdl</wsdl>
- <name>BNQuoteServiceTest</name>
- <serverType>Enhydra-MultiServer/3.1.1b1 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.gxchart.com/webchart.wsdl</wsdl>
- <name>webchartTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/ds/domainspy.asmx?WSDL</wsdl>
- <name>domainspyTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ewsdemo.webmethods.com/WmEWS/directory/wsd.dsp?interface=wmpayflow.sample&service=Credit_Approval</wsdl>
- <name>Credit_ApprovalTest</name>
- <serverType> # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://sms.idws.com/soap/smsservice.dll/wsdl/ISMSService</wsdl>
- <name>ISMSServiceTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://glkev.webs.innerhost.com/glkev_ws/HistoricalStockQuotes.asmx?WSDL</wsdl>
- <name>HistoricalStockQuotesTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/fw/FastWeather.asmx?WSDL</wsdl>
- <name>FastWeatherTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www22.brinkster.com/horaciovallejo/netpress1.asmx?wsdl</wsdl>
- <name>netpress1Test</name>
- <serverType>Microsoft-IIS/6.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws.acrosscommunications.com/NumPager.asmx?WSDL</wsdl>
- <name>NumPagerTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws.acrosscommunications.com/ICQ.asmx?WSDL</wsdl>
- <name>ICQTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://oneoutbox.com/wsdl/FaxService.wsdl</wsdl>
- <name>FaxServiceTest</name>
- <serverType>Apache/1.3.27 (Unix) PHP/4.2.3 FrontPage/5.0.2.2510 Rewrit/1.1a # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.cgi101.com/~msmithso/wsdl/mach.wsdl</wsdl>
- <name>machTest</name>
- <serverType>Apache/1.3.29 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://otn.oracle.com/ws/otnnews?WSDL</wsdl>
- <name>otnnewsTest</name>
- <serverType>Oracle9iAS/9.0.4 Oracle HTTP Server # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://xml.nig.ac.jp/wsdl/GetEntry.wsdl</wsdl>
- <name>GetEntryTest</name>
- <serverType>GLUE/3.2.1,Apache Coyote/1.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/aba.asmx?WSDL</wsdl>
- <name>abaTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.infoaccelerator.net/cfc/rtf2html.cfc?WSDL</wsdl>
- <name>rtf2htmlTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xeeinc.com/RateInformation/Rateinfo.asmx?WSDL</wsdl>
- <name>RateinfoTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.esynaps.com/WebServices/eSynapsFeed.asmx?WSDL</wsdl>
- <name>eSynapsFeedTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/sendsmsworld.asmx?WSDL</wsdl>
- <name>sendsmsworldTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://xml.nig.ac.jp/wsdl/SRS.wsdl</wsdl>
- <name>SRSTest</name>
- <serverType>GLUE/3.2.1,Apache Coyote/1.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www28.brinkster.com/hegdes/NumberToWords.asmx?WSDL</wsdl>
- <name>NumberToWordsTest</name>
- <serverType>Microsoft-IIS/6.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.richsolutions.com/richpayments/richpay.asmx?WSDL</wsdl>
- <name>richpayTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://server1.pointwsp.net/ws/postal/main.asmx?WSDL</wsdl>
- <name>mainTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://xmlrad.com/WSFindMP3Bin/WSFindMP3.dll/WSDL</wsdl>
- <name>WSFindMP3Test</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.siliconllama.com/services/wsdl/ISOcodesService.wsdl</wsdl>
- <name>ISOcodesServiceTest</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webserviceoftheday.com/ws/soap/wsotd.asmx?wsdl</wsdl>
- <name>wsotdTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.ripedev.com/webservices/LocalTime.asmx?WSDL</wsdl>
- <name>LocalTimeTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://majordojo.com/amazon_query/amazon_query.wsdl</wsdl>
- <name>amazon_queryTest</name>
- <serverType>Apache/1.3.29 (Unix) mod_jk/1.2.0 mod_ssl/2.8.16 OpenSSL/0.9.6g PHP/4.3.4 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.SoapClient.com/xml/SQLDataSoap.wsdl</wsdl>
- <name>SQLDataSoapTest</name>
- <serverType>SQLData Server/3.01 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://soap.einsteinware.com/nascar/nascardataservice.asmx?WSDL</wsdl>
- <name>nascardataserviceTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://wsdl.wsdlfeeds.com/spell.cfc?wsdl</wsdl>
- <name>spellTest</name>
- <serverType>Apache/1.3.27 (Unix) (Red-Hat/Linux) JRun/4.0 mod_ssl/2.8.12 OpenSSL/0.9.6b DAV/1.0.3 PHP/4.1.2 mod_perl/1.26 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/av/AddressValidate.asmx?WSDL</wsdl>
- <name>AddressValidateTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://arcweb.esri.com/services/v2/RouteFinder.wsdl</wsdl>
- <name>RouteFinderTest</name>
- <serverType>Netscape-Enterprise/6.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://arcweb.esri.com/services/v2/Query.wsdl</wsdl>
- <name>QueryTest</name>
- <serverType>Netscape-Enterprise/6.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/fax.asmx?wsdl</wsdl>
- <name>faxTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/gpp/GeoPinPoint.asmx?WSDL</wsdl>
- <name>GeoPinPointTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/gp/GeoPhone.asmx?WSDL</wsdl>
- <name>GeoPhoneTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://webservices.sld.cu/aldia.wsdl</wsdl>
- <name>aldiaTest</name>
- <serverType>Apache/1.3.27 (Unix) (Red-Hat/Linux) mod_ssl/2.8.12 OpenSSL/0.9.6b # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.inkostar.com/wsdl/iifws/iifws.wsdl</wsdl>
- <name>iifwsTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.nims.nl/soap/oms2.wsdl</wsdl>
- <name>oms2Test</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.lixusnet.com/lixusnet/AddFinder.jws?wsdl</wsdl>
- <name>AddFinderTest</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xignite.com/xsimulation.asmx?WSDL</wsdl>
- <name>xsimulationTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/uszip.asmx?WSDL</wsdl>
- <name>uszipTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.rightsecurity.biz/NRICWebServices/NRICWebServices.dll/wsdl/Iws_Verify_NRIC</wsdl>
- <name>Iws_Verify_NRICTest</name>
- <serverType>Netscape-Enterprise/3.5.1 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://live.capescience.com/wsdl/GlobalWeather.wsdl</wsdl>
- <name>GlobalWeatherTest</name>
- <serverType> # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.barnaland.is/dev/sms.asmx?WSDL</wsdl>
- <name>smsTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.firelife.eu.com/dynamicflash/dynamicflash.asmx?WSDL</wsdl>
- <name>dynamicflashTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.e-naxos.com/scripts/enwscp.dll/wsdl/IODCODESPOSTAUX</wsdl>
- <name>IODCODESPOSTAUXTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.indobiz.com/OptionPricing.asmx?WSDL</wsdl>
- <name>OptionPricingTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://xmlrad.com/WSGeneratorBin/WSGenerator.dll/WSDL</wsdl>
- <name>WSGeneratorTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://xml.nig.ac.jp/wsdl/Blast.wsdl</wsdl>
- <name>BlastTest</name>
- <serverType>GLUE/3.2.1,Apache Coyote/1.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://xml.nig.ac.jp/wsdl/TxSearch.wsdl</wsdl>
- <name>TxSearchTest</name>
- <serverType>GLUE/3.2.1,Apache Coyote/1.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.codebump.com/services/zipcodelookup.asmx?wsdl</wsdl>
- <name>zipcodelookupTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.esynaps.com/webservices/YourHostInfo.asmx?WSDL</wsdl>
- <name>YourHostInfoTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.oakleaf.ws/cfrtocws/cfrtocws.asmx?wsdl</wsdl>
- <name>cfrtocwsTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.baxglobal.com/xmltracking/xmltracking.asmx?wsdl</wsdl>
- <name>xmltrackingTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://webservices.isitedesign.com/ws/chartWS.cfc?wsdl</wsdl>
- <name>chartWSTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ww6.borland.com/webservices/MapQuest/MapQuest.exe/wsdl/IMapQuest</wsdl>
- <name>IMapQuestTest</name>
- <serverType>Microsoft-IIS/4.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.pinellus.com/cfc/Cod_fiscale.cfc?wsdl</wsdl>
- <name>Cod_fiscaleTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.stgregorioschurchdc.org/wsdl/Bible.wsdl</wsdl>
- <name>BibleTest</name>
- <serverType>Apache/1.3.27 (Unix) PHP/4.2.3 FrontPage/5.0.2.2510 Rewrit/1.1a # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://aspnet.lamaan.com/webservices/QuranVerse.asmx?WSDL</wsdl>
- <name>QuranVerseTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.danmarinescu.com/WebServices/ChessCGIServer.exe/wsdl/IBorlandChess</wsdl>
- <name>IBorlandChessTest</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/EMBLNucleotideSequenceWebService.asmx?wsdl</wsdl>
- <name>EMBLNucleotideSequenceWebServiceTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://wavendon.dsdata.co.uk/axis/services/CarRentalQuotes?wsdl</wsdl>
- <name>CarRentalQuotesTest</name>
- <serverType>Apache/2.0.39 (Win32) mod_jk/1.2.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://soap.systinet.net/demos/W3CSearch/wsdl</wsdl>
- <name>W3CSearchTest</name>
- <serverType>Systinet WASP Server for Java/4.6.1 (Java/1.4.2; Linux/2.4.20-24.7) # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.codecube.net/services/xreonline.asmx?WSDL</wsdl>
- <name>xreonlineTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://webservices.tei.or.th/getQuakeData.cfc?wsdl</wsdl>
- <name>getQuakeDataTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://wavendon.dsdata.co.uk:8080/axis/services/SBGGetAirFareQuote?wsdl</wsdl>
- <name>SBGGetAirFareQuoteTest</name>
- <serverType>Apache/2.0.39 (Win32) mod_jk/1.2.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws.cdyne.com/whoisforip/queryip.asmx?wsdl</wsdl>
- <name>queryipTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws.acrosscommunications.com/SMS.asmx?WSDL</wsdl>
- <name>SMSTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://dotnet.cyberthink.net/computerdictionary/computerdictionary.asmx?wsdl</wsdl>
- <name>computerdictionaryTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.apniurdu.com/SOAP/Urdu2.wsdl</wsdl>
- <name>Urdu2Test</name>
- <serverType>Apache # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/airport.asmx?wsdl</wsdl>
- <name>airportTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://telecommerce.danet.de/axis/services/DocConverterServicePort?wsdl</wsdl>
- <name>DocConverterServicePortTest</name>
- <serverType>Apache/1.3.26 (Linux/SuSE) mod_webapp/1.2.0-dev PHP/4.2.2 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xmlme.com/WSShakespeare.asmx?WSDL</wsdl>
- <name>WSShakespeareTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://glkev.webs.innerhost.com/glkev_ws/WeatherFetcher.asmx?WSDL</wsdl>
- <name>WeatherFetcherTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.dl-me.com/webservices/unitext.asmx?wsdl</wsdl>
- <name>unitextTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.suiyi.com/soap/economic.dll/wsdl/Ieconomic</wsdl>
- <name>IeconomicTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://webservices.isitedesign.com/ws/slashdotnews.cfc?wsdl</wsdl>
- <name>slashdotnewsTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xignite.com/xretirement.asmx?WSDL</wsdl>
- <name>xretirementTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/yp/YellowPages.asmx?WSDL</wsdl>
- <name>YellowPagesTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.securexml.net/securexml/securexml.wsdl</wsdl>
- <name>securexmlTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://soap.4s4c.com/weblogs/subscribe.wsdl</wsdl>
- <name>subscribeTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.schemaweb.info/webservices/soap/SchemaWebSoap.asmx?wsdl</wsdl>
- <name>SchemaWebSoapTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.financialwebservices.ltd.uk/axis/services/bond?wsdl</wsdl>
- <name>bondTest</name>
- <serverType>Apache Tomcat/4.0.4 (HTTP/1.1 Connector) # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xignite.com/xnews.asmx?WSDL</wsdl>
- <name>xnewsTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.what-is-around.com/awwia.wsdl</wsdl>
- <name>awwiaTest</name>
- <serverType>Apache/2.0.47 (Unix) mod_ssl/2.0.47 OpenSSL/0.9.7b # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.eyemaginations.com/cgi-bin/getWSDL.pl?wsdl=WebFunction.wsdl</wsdl>
- <name>getWSDLTest</name>
- <serverType>Apache/1.3.27 (Unix) FrontPage/5.0.2.2510 mod_ssl/2.8.12 OpenSSL/0.9.6g # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.flash-db.com/services/ws/companyInfo.wsdl</wsdl>
- <name>companyInfoTest</name>
- <serverType>Apache/1.3.28 (Unix) mod_auth_passthrough/1.8 mod_bwprotect/0.2 mod_bwlimited/1.2 PHP/4.3.3 mod_log_bytes/1.2 FrontPage/5.0.2.2634 # PHP/4.3.3</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.abundanttech.com/webservices/population/population.wsdl</wsdl>
- <name>populationTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://wsdl.wsdlfeeds.com/odp.cfc?wsdl</wsdl>
- <name>odpTest</name>
- <serverType>Apache/1.3.27 (Unix) (Red-Hat/Linux) JRun/4.0 mod_ssl/2.8.12 OpenSSL/0.9.6b DAV/1.0.3 PHP/4.1.2 mod_perl/1.26 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xignite.com/xstatistics.asmx?WSDL</wsdl>
- <name>xstatisticsTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.nickhodge.com/nhodge/finnwords/finnwords.wsdl</wsdl>
- <name>finnwordsTest</name>
- <serverType>Apache/1.3.29 (Unix) mod_auth_passthrough/1.8 mod_gzip/1.3.26.1a mod_jk/1.2.0 mod_log_bytes/1.2 mod_bwlimited/1.4 PHP/4.3.4 FrontPage/5.0.2.2634 mod_ssl/2.8.16 OpenSSL/0.9.6b # PHP/4.3.4</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://terraservice.net/TerraService.asmx?WSDL</wsdl>
- <name>TerraServiceTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.swanandmokashi.com/HomePage/WebServices/QuoteOfTheDay.asmx?WSDL</wsdl>
- <name>QuoteOfTheDayTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://test.mapfrepr.net/Encryption/Encryption.asmx?WSDL</wsdl>
- <name>EncryptionTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://digilander.libero.it/mamo78/KRSS_DAML_Service.wsdl</wsdl>
- <name>KRSS_DAML_ServiceTest</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://glkev.webs.innerhost.com/glkev_ws/UPSTracking.asmx?WSDL</wsdl>
- <name>UPSTrackingTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/hcpcs.asmx?WSDL</wsdl>
- <name>hcpcsTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.framewerks.com/WebServices/helpfulfunctions/helpfulfunctions.asmx?WSDL</wsdl>
- <name>helpfulfunctionsTest</name>
- <serverType>Microsoft-IIS/5.0 Geobytes-GeoSelect/2.1.0.1 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.esynaps.com/WebServices/BusinessList.asmx?WSDL</wsdl>
- <name>BusinessListTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://webservices.wolfram.com/services/SearchServices/WolframSearch.wsdl</wsdl>
- <name>WolframSearchTest</name>
- <serverType>Apache Coyote/1.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://webservices.matlus.com/scripts/emailwebservice.dll/wsdl/IEmailService</wsdl>
- <name>IEmailServiceTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.seshakiran.com/QuoteService/QuotesService.asmx?wsdl</wsdl>
- <name>QuotesServiceTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/pa/phoneappend.asmx?wsdl</wsdl>
- <name>phoneappendTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/uklocation.asmx?WSDL</wsdl>
- <name>uklocationTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/icd9drug.asmx?WSDL</wsdl>
- <name>icd9drugTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://docserv.aurigalogic.com/docserv.wsdl</wsdl>
- <name>docservTest</name>
- <serverType>Apache/1.3.27 (Unix) mod_jk2/2.0.3-dev mod_webapp/1.2.0-dev PHP/4.1.2 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.barnaland.is/dev/phonebook.asmx?WSDL</wsdl>
- <name>phonebookTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xmlme.com/WSSportingGoods.asmx?WSDL</wsdl>
- <name>WSSportingGoodsTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.saintlogin.com/SAINT_WS/SAINTlogin_service_mssoap.php?wsdl</wsdl>
- <name>SAINTlogin_service_mssoapTest</name>
- <serverType>Apache/2.0.46 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.wsindex.org/pages/wsindexLinks.wsdl</wsdl>
- <name>wsindexLinksTest</name>
- <serverType>Apache/1.3.28 (Unix) mod_auth_passthrough/1.8 mod_bwlimited/1.4 PHP/4.3.3 mod_log_bytes/1.2 FrontPage/5.0.2.2634 mod_ssl/2.8.15 OpenSSL/0.9.6g # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://soap.einsteinware.com/email/emailservices.asmx?WSDL</wsdl>
- <name>emailservicesTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.ejse.com/WeatherService/Service.asmx?WSDL</wsdl>
- <name>ServiceTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.indobiz.com/IndoEconoCator.asmx?WSDL</wsdl>
- <name>IndoEconoCatorTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.winisp.net/cheeso/zips/ZipService.asmx?WSDL</wsdl>
- <name>ZipServiceTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.abysal.com/soap/AbysalEmail.wsdl</wsdl>
- <name>AbysalEmailTest</name>
- <serverType>Abysal-webDTP/3.02 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/gc/GeoCash.asmx?WSDL</wsdl>
- <name>GeoCashTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://soap.systinet.net/demos/FreeDB/wsdl</wsdl>
- <name>FreeDBTest</name>
- <serverType>Systinet WASP Server for Java/4.6.1 (Java/1.4.2; Linux/2.4.20-24.7) # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/FinanceService.asmx?WSDL</wsdl>
- <name>FinanceServiceTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://arcweb.esri.com/services/v2/PlaceFinderSample.wsdl</wsdl>
- <name>PlaceFinderSampleTest</name>
- <serverType>Netscape-Enterprise/6.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.PerfectXML.NET/WebServices/SalesRankNPrice/BookService.asmx?WSDL</wsdl>
- <name>BookServiceTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws.xara.com/graphicrender/render3d.wsdl</wsdl>
- <name>render3dTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.bitwaste.com/xmethods/ATTPager/ATTPager.wsdl</wsdl>
- <name>ATTPagerTest</name>
- <serverType>Apache/2.0.40 (Red Hat Linux) PHP/4.2.2 DAV/2 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://webservices.empowered.com/statsws/stats.asmx?WSDL</wsdl>
- <name>statsTest</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://samples.bowstreet.com/bowstreet5/webengine/xmethods/gcd/Action!getWSDL</wsdl>
- <name>ActiongetWSDLTest</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.freshscore.com/service/FreshScoreLiveScores.asmx?WSDL</wsdl>
- <name>FreshScoreLiveScoresTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.berneda.com/scripts/TeeChartSOAP.exe/wsdl/ITeeChart</wsdl>
- <name>ITeeChartTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.discoverdance.co.uk/zipQuery/zipCodeService.asmx?wsdl</wsdl>
- <name>zipCodeServiceTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.jusufdarmawan.com/wsprimegenerator.exe/wsdl/IPrimeGenerator</wsdl>
- <name>IPrimeGeneratorTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xmethods.net/sd/2001/TemperatureService.wsdl</wsdl>
- <name>TemperatureServiceTest</name>
- <serverType>Enhydra-MultiServer/3.1.1b1 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xmethods.net/wsdl/query.wsdl</wsdl>
- <name>queryTest</name>
- <serverType>Apache/1.3.26 (Unix) Enhydra-Director/3 PHP/4.0.6 DAV/1.0.3 AuthNuSphere/1.0.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://appserver.pepperzak.net/bankcode/BankCodeEJBHome/wsdl.jsp</wsdl>
- <name>BankCodeEJBHomeTest</name>
- <serverType>WebLogic WebLogic Server 6.1 SP1 09/18/2001 14:28:44 #138716 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/pt/PackTrack.asmx?WSDL</wsdl>
- <name>PackTrackTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.marotz.se/scripts/zipinfo.exe/wsdl/ISwedishZipInfo</wsdl>
- <name>ISwedishZipInfoTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://wavendon.dsdata.co.uk/axis/services/WhoisData?wsdl</wsdl>
- <name>WhoisDataTest</name>
- <serverType>Apache/2.0.39 (Win32) mod_jk/1.2.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xignite.com/xrealtime.asmx?WSDL</wsdl>
- <name>xrealtimeTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.extensio.com:8080/ExtensioInfoServer/mbsoap/MBWSSoapServices.wsdl</wsdl>
- <name>MBWSSoapServicesTest</name>
- <serverType>Apache/1.3.27 (Unix) mod_jk/1.1.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xignite.com/xSurvey.asmx?WSDL</wsdl>
- <name>xSurveyTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.abundanttech.com/webservices/deadoralive/deadoralive.wsdl</wsdl>
- <name>deadoraliveTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl</wsdl>
- <name>urnxmethodsdelayedquotesTest</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.bindingpoint.com/ws/imalert/imalert.asmx?wsdl</wsdl>
- <name>imalertTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.PerfectXML.net/WebServices/MusicTeachers/MusicTeachers.asmx?wsdl</wsdl>
- <name>MusicTeachersTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://adrianr.dyndns.org/Fortune/Fortune.wsdl</wsdl>
- <name>FortuneTest</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.framewerks.com/WebServices/HTMLeMail/HTMLeMail.asmx?WSDL</wsdl>
- <name>HTMLeMailTest</name>
- <serverType>Microsoft-IIS/5.0 Geobytes-GeoSelect/2.1.0.1 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.quisque.com/fr/techno/eqimage/eqimage.asmx?WSDL</wsdl>
- <name>eqimageTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://xml.nig.ac.jp/wsdl/Fasta.wsdl</wsdl>
- <name>FastaTest</name>
- <serverType>GLUE/3.2.1,Apache Coyote/1.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://reto.checkit.ch/Scripts/Lotto.dll/wsdl/IgetNumbers</wsdl>
- <name>IgetNumbersTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/SendSMS.asmx?WSDL</wsdl>
- <name>SendSMSTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://wavendon.dsdata.co.uk/axis/services/SpamKiller?wsdl</wsdl>
- <name>SpamKillerTest</name>
- <serverType>Apache/2.0.39 (Win32) mod_jk/1.2.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://webservices.imacination.com/distance/Distance.jws?wsdl</wsdl>
- <name>DistanceTest</name>
- <serverType>Resin/2.1.7 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.barnaland.is/dev/personlookup.asmx?WSDL</wsdl>
- <name>personlookupTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.esynaps.com/WebServices/WhoIsService.asmx?WSDL</wsdl>
- <name>WhoIsServiceTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xmethods.net/sd/2001/EBayWatcherService.wsdl</wsdl>
- <name>EBayWatcherServiceTest</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://api.google.com/GoogleSearch.wsdl</wsdl>
- <name>GoogleSearchTest</name>
- <serverType>GFE/1.3 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.esynaps.com/webservices/codegenerator.asmx?WSDL</wsdl>
- <name>codegeneratorTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.flash-db.com/services/ws/barCodes.wsdl</wsdl>
- <name>barCodesTest</name>
- <serverType>Apache/1.3.28 (Unix) mod_auth_passthrough/1.8 mod_bwprotect/0.2 mod_bwlimited/1.2 PHP/4.3.3 mod_log_bytes/1.2 FrontPage/5.0.2.2634 # PHP/4.3.3</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/RssToHTML.asmx?WSDL</wsdl>
- <name>RssToHTMLTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://server1.pointwsp.net/ws/finance/currency.asmx?WSDL</wsdl>
- <name>currencyTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.ebob42.com/cgi-bin/NumberToWordsInDutch.exe/wsdl/IDutch</wsdl>
- <name>IDutchTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.lixusnet.com/lixusnet/HPcatalog.jws?wsdl</wsdl>
- <name>HPcatalogTest</name>
- <serverType>NGASI Managed Hosting Application Server/2.0,Apache Tomcat/4.0 (HTTP/1.1 Connector) # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.oakleaf.ws/cfrsearchws/cfrsearchws.asmx?wsdl</wsdl>
- <name>cfrsearchwsTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://glkev.webs.innerhost.com/glkev_ws/StockServices.asmx?WSDL</wsdl>
- <name>StockServicesTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws.acrosscommunications.com/Fax.asmx?WSDL</wsdl>
- <name>FaxTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.dl-me.com/etoaservice/engtoarabic.asmx?WSDL</wsdl>
- <name>engtoarabicTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/AustralianPostCode.asmx?WSDL</wsdl>
- <name>AustralianPostCodeTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/country.asmx?wsdl</wsdl>
- <name>countryTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.esynaps.com/WebServices/SearchWS.asmx?WSDL</wsdl>
- <name>SearchWSTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.flash-db.com/services/ws/flashBarChart.wsdl</wsdl>
- <name>flashBarChartTest</name>
- <serverType>Apache/1.3.28 (Unix) mod_auth_passthrough/1.8 mod_bwprotect/0.2 mod_bwlimited/1.2 PHP/4.3.3 mod_log_bytes/1.2 FrontPage/5.0.2.2634 # PHP/4.3.3</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws.cdyne.com/SpellChecker/check.asmx?wsdl</wsdl>
- <name>checkTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xmethods.net/sd/2001/BabelFishService.wsdl</wsdl>
- <name>BabelFishServiceTest</name>
- <serverType>Apache/1.3.26 (Unix) Enhydra-Director/3 PHP/4.0.6 DAV/1.0.3 AuthNuSphere/1.0.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/sq/FastQuote.asmx?WSDL</wsdl>
- <name>FastQuoteTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://glkev.webs.innerhost.com/glkev_ws/Currencyws.asmx?WSDL</wsdl>
- <name>CurrencywsTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.swanandmokashi.com/HomePage/WebServices/Horoscope.asmx?WSDL</wsdl>
- <name>HoroscopeTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/UDDIBusinessFinder.asmx?WSDL</wsdl>
- <name>UDDIBusinessFinderTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/uspo/USPatentOffice.asmx?WSDL</wsdl>
- <name>USPatentOfficeTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws.cdyne.com/ziptogeo/zip2geo.asmx?wsdl</wsdl>
- <name>zip2geoTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/icd9.asmx?WSDL</wsdl>
- <name>icd9Test</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xignite.com/xquotes.asmx?WSDL</wsdl>
- <name>xquotesTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/BibleWebservice.asmx?wsdl</wsdl>
- <name>BibleWebserviceTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws.acrosscommunications.com/Phone.asmx?WSDL</wsdl>
- <name>PhoneTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.esynaps.com/WebServices/NFLNews.asmx?WSDL</wsdl>
- <name>NFLNewsTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.stgregorioschurchdc.org/wsdl/Calendar.wsdl</wsdl>
- <name>CalendarTest</name>
- <serverType>Apache/1.3.27 (Unix) PHP/4.2.3 FrontPage/5.0.2.2510 Rewrit/1.1a # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xignite.com/xEdgar.asmx?WSDL</wsdl>
- <name>xEdgarTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/globalweather.asmx?WSDL</wsdl>
- <name>globalweatherTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.abundanttech.com/webservices/bnprice/bnprice.wsdl</wsdl>
- <name>bnpriceTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/upc/UPC.asmx?WSDL</wsdl>
- <name>UPCTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.bitounis.com/IBAN/IBANFuncs.asmx?WSDL</wsdl>
- <name>IBANFuncsTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.winisp.net/cheeso/books/books.asmx?WSDL</wsdl>
- <name>booksTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/ev/EmailValidate.asmx?WSDL</wsdl>
- <name>EmailValidateTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/ValidateEmail.asmx?WSDL</wsdl>
- <name>ValidateEmailTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xmethods.net/sd/2001/XMethodsFilesystemService.wsdl</wsdl>
- <name>XMethodsFilesystemServiceTest</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ws2.serviceobjects.net/whi/WhoIs.asmx?WSDL</wsdl>
- <name>WhoIsTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://arcweb.esri.com/services/v2/MapImage.wsdl</wsdl>
- <name>MapImageTest</name>
- <serverType>Netscape-Enterprise/6.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://xml.nig.ac.jp/wsdl/DDBJ.wsdl</wsdl>
- <name>DDBJTest</name>
- <serverType>GLUE/3.2.1,Apache Coyote/1.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://urljr.com/soap</wsdl>
- <name>urljrTest</name>
- <serverType>Apache/2.0.44 (Win32) DAV/2 mod_ssl/2.0.43 OpenSSL/0.9.6g PHP/4.3.3 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/ConvDocEncBar.asmx?wsdl</wsdl>
- <name>ConvDocEncBarTest</name>
- <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>true</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/ConvDocLitWra.asmx?wsdl</wsdl>
- <name>ConvDocLitWraTest</name>
- <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>true</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/ConvDocLitBar.asmx?wsdl</wsdl>
- <name>ConvDocLitBarTest</name>
- <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>true</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/ConvRpc.asmx?wsdl</wsdl>
- <name>ConvRpcTest</name>
- <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>true</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/ConvDocEncWra.asmx?wsdl</wsdl>
- <name>ConvDocEncWraTest</name>
- <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>true</clientTest>
- </service>
- <service>
- <wsdl>http://www.abctext.com/webservices/SMS.asmx?WSDL</wsdl>
- <name>SMSTest2</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.barnaland.is/dev/names.asmx?WSDL</wsdl>
- <name>namesTest</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.net/isbn.asmx?WSDL</wsdl>
- <name>isbnTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.verbix.com/cgi-bin/soapx.exe/wsdl/IGetInflection</wsdl>
- <name>IGetInflectionTest</name>
- <serverType>Microsoft-IIS/5.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.culand.net/WebServices/bin/WSMaze_Server.dll/wsdl/IWSMazeServer</wsdl>
- <name>IWSMazeServerTest</name>
- <serverType>Microsoft-IIS/5.1 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://63.138.157.107/av/wsdl/ITAddressValidations</wsdl>
- <name>ITAddressValidationsTest</name>
- <serverType>Apache/1.3.28 (Win32) PHP/4.3.3 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.quisque.com/fr/chasses/blasons/search.asmx?WSDL</wsdl>
- <name>searchTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://survey.rila.net/SurveyService/SurveyService.asmx?wsdl</wsdl>
- <name>SurveyServiceTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://greg.froh.ca/fun/random_bushism/soap/?wsdl</wsdl>
- <name>Test</name>
- <serverType>Apache/1.3.29 (Unix) PHP/4.3.3 # PHP/4.3.3</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://lokeuei.malaysiandevelopers.net/magnum4d/results.asmx?WSDL</wsdl>
- <name>resultsTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.geomonster.com/GeoServe.asmx?WSDL</wsdl>
- <name>GeoServeTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://nagraj.hopto.org/axis/services/ZenQuoteService?wsdl</wsdl>
- <name>ZenQuoteServiceTest</name>
- <serverType>Apache-Coyote/1.1 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.ghettodriveby.com/soap/?wsdl</wsdl>
- <name>Test2</name>
- <serverType>Apache/1.3.29 (Unix) PHP/4.3.3 # PHP/4.3.3</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://ocean.cse.ucsc.edu/soap/getCAWeather.wsdl</wsdl>
- <name>getCAWeatherTest</name>
- <serverType>Apache/2.0.46 (Unix) mod_ssl/2.0.46 OpenSSL/0.9.6g DAV/2 SOAP/1.1 Catacomb/0.9.1-dev # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xignite.com/xInsider.asmx?WSDL</wsdl>
- <name>xInsiderTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://webservices.geomonster.com/GeoServe.asmx?wsdl</wsdl>
- <name>GeoServeTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/TestBinding1.asmx?wsdl</wsdl>
- <name>TestBinding1Test</name>
- <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/TestBinding2.asmx?wsdl</wsdl>
- <name>TestBinding2Test</name>
- <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/TestBinding4.asmx?wsdl</wsdl>
- <name>TestBinding4Test</name>
- <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>true</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/TestBinding3.asmx?wsdl</wsdl>
- <name>TestBinding3Test</name>
- <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/TestBinding5.asmx?wsdl</wsdl>
- <name>TestBinding5Test</name>
- <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://paracite.ecs.soton.ac.uk/paracite.wsdl</wsdl>
- <name>paraciteTest</name>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://sms.smspoint.net:8080/special/services/Sms?wsdl</wsdl>
- <name>SmsTest</name>
- <serverType>Apache Coyote/1.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://webservices.instantlogic.com/zipcodes.ils?wsdl</wsdl>
- <name>zipcodesTest</name>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.boyzoid.com/threat.cfc?wsdl</wsdl>
- <name>threatTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/Test1.asmx?wsdl</wsdl>
- <name>Test1Test</name>
- <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/TestBinding6.asmx?wsdl</wsdl>
- <name>TestBinding6Test</name>
- <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/Test2.asmx?wsdl</wsdl>
- <name>Test2Test</name>
- <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.rzg.mpg.de/~michel/SOPCWeb.wsdl</wsdl>
- <name>SOPCWebTest</name>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://helena.europe.webmatrixhosting.net/Morse.asmx?WSDL</wsdl>
- <name>MorseTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://iis1.grantparksoftware.com:8080/gps/gps.asmx?WSDL</wsdl>
- <name>gpsTest</name>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://isnpx1158.in2p3.fr:8180/axis/services/AMIWebService?wsdl</wsdl>
- <name>AMIWebServiceTest</name>
- <serverType>Apache-Coyote/1.1 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.dotnetclipper.com/clip.asmx?WSDL</wsdl>
- <name>clipTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/aba.asmx?WSDL</wsdl>
- <name>abaTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.newcomer.de/WebServices/Lohn.dll/wsdl/ILohn2004</wsdl>
- <name>ILohn2004Test</name>
- <serverType>Microsoft-IIS/6.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/fax.asmx?wsdl</wsdl>
- <name>faxTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/RssToHTML.asmx?WSDL</wsdl>
- <name>RssToHTMLTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/BibleWebservice.asmx?wsdl</wsdl>
- <name>BibleWebserviceTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/ValidateEmail.asmx?WSDL</wsdl>
- <name>ValidateEmailTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/icd9toicd10.asmx?WSDL</wsdl>
- <name>icd9toicd10Test2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/stockquote.asmx?WSDL</wsdl>
- <name>stockquoteTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/icd9.asmx?WSDL</wsdl>
- <name>icd9Test2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/hcpcs.asmx?WSDL</wsdl>
- <name>hcpcsTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/country.asmx?wsdl</wsdl>
- <name>countryTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/barcode.asmx?WSDL</wsdl>
- <name>barcodeTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/isbn.asmx?WSDL</wsdl>
- <name>isbnTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/icd9drug.asmx?WSDL</wsdl>
- <name>icd9drugTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/AustralianPostCode.asmx?WSDL</wsdl>
- <name>AustralianPostCodeTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/usweather.asmx?WSDL</wsdl>
- <name>usweatherTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/CurrencyConvertor.asmx?wsdl</wsdl>
- <name>CurrencyConvertorTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/airport.asmx?wsdl</wsdl>
- <name>airportTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/uszip.asmx?WSDL</wsdl>
- <name>uszipTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/icd10.asmx?WSDL</wsdl>
- <name>icd10Test2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/NAICS.asmx?wsdl</wsdl>
- <name>NAICSTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/SendSMS.asmx?WSDL</wsdl>
- <name>SendSMSTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/UDDIBusinessFinder.asmx?WSDL</wsdl>
- <name>UDDIBusinessFinderTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/FinanceService.asmx?WSDL</wsdl>
- <name>FinanceServiceTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/sendsmsworld.asmx?WSDL</wsdl>
- <name>sendsmsworldTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://api.ecommstats.com/services/statService.wsdl</wsdl>
- <name>statServiceTest</name>
- <serverType>TME-GLUE/5.0,Apache-Coyote/1.1 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/EMBLNucleotideSequenceWebService.asmx?wsdl</wsdl>
- <name>EMBLNucleotideSequenceWebServiceTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/uklocation.asmx?WSDL</wsdl>
- <name>uklocationTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/periodictable.asmx?wsdl</wsdl>
- <name>periodictableTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://66.165.154.102/globalweather.asmx?WSDL</wsdl>
- <name>globalweatherTest2</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/IncludeTest.asmx?wsdl</wsdl>
- <name>IncludeTestTest</name>
- <serverType>Mono-XSP Server/0.9.99.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>true</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/EMBLNucleotideSequenceWebService.asmx?wsdl</wsdl>
- <name>EMBLNucleotideSequenceWebServiceTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/icd10.asmx?WSDL</wsdl>
- <name>icd10Test3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/hcpcs.asmx?WSDL</wsdl>
- <name>hcpcsTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/isbn.asmx?WSDL</wsdl>
- <name>isbnTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/AustralianPostCode.asmx?WSDL</wsdl>
- <name>AustralianPostCodeTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/fax.asmx?wsdl</wsdl>
- <name>faxTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/aba.asmx?WSDL</wsdl>
- <name>abaTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/globalweather.asmx?WSDL</wsdl>
- <name>globalweatherTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/UDDIBusinessFinder.asmx?WSDL</wsdl>
- <name>UDDIBusinessFinderTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/CurrencyConvertor.asmx?wsdl</wsdl>
- <name>CurrencyConvertorTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/NAICS.asmx?wsdl</wsdl>
- <name>NAICSTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/BibleWebservice.asmx?wsdl</wsdl>
- <name>BibleWebserviceTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/ValidateEmail.asmx?WSDL</wsdl>
- <name>ValidateEmailTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/uklocation.asmx?WSDL</wsdl>
- <name>uklocationTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/stockquote.asmx?WSDL</wsdl>
- <name>stockquoteTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/usweather.asmx?WSDL</wsdl>
- <name>usweatherTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/icd9drug.asmx?WSDL</wsdl>
- <name>icd9drugTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/periodictable.asmx?wsdl</wsdl>
- <name>periodictableTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/uszip.asmx?WSDL</wsdl>
- <name>uszipTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/SendSMS.asmx?WSDL</wsdl>
- <name>SendSMSTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/airport.asmx?wsdl</wsdl>
- <name>airportTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/sendsmsworld.asmx?WSDL</wsdl>
- <name>sendsmsworldTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/icd9toicd10.asmx?WSDL</wsdl>
- <name>icd9toicd10Test3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/FinanceService.asmx?WSDL</wsdl>
- <name>FinanceServiceTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/country.asmx?wsdl</wsdl>
- <name>countryTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/RssToHTML.asmx?WSDL</wsdl>
- <name>RssToHTMLTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/barcode.asmx?WSDL</wsdl>
- <name>barcodeTest3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/icd9.asmx?WSDL</wsdl>
- <name>icd9Test3</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://projekt.wifo.uni-mannheim.de/elmar/api/ElmarSearchServices?wsdl</wsdl>
- <name>ElmarSearchServicesTest</name>
- <serverType>Apache/2.0.48 (Linux/SuSE) mod_perl/1.99_08 Perl/v5.8.0 PHP/4.3.4 mod_ssl/2.0.48 OpenSSL/0.9.6i mod_jk2/2.0.4-dev # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/TranslateService.asmx?WSDL</wsdl>
- <name>TranslateServiceTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xignite.com/xrates.asmx?WSDL</wsdl>
- <name>xratesTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://helena.europe.webmatrixhosting.net/LetterSoup.asmx?WSDL</wsdl>
- <name>LetterSoupTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/DataService.asmx?wsdl</wsdl>
- <name>DataServiceTest</name>
- <serverType>Mono-XSP Server/0.9.99.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>true</clientTest>
- </service>
- <service>
- <wsdl>http://www.javaportal.it/kservices/JIPNews?wsdl</wsdl>
- <name>JIPNewsTest</name>
- <serverType>Apache-AdvancedExtranetServer/1.3.26 (Mandrake Linux/6.1mdk) mod_jk/1.2.1 auth_ldap/1.6.0 mod_ssl/2.8.10 OpenSSL/0.9.6g sxnet/1.2.4 PHP/4.2.3 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.tilisoft.com/ws/LocInfo/ZipCode.asmx?WSDL</wsdl>
- <name>ZipCodeTest2</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.quisque.com/fr/chasses/crypto/cesar.asmx?WSDL</wsdl>
- <name>cesarTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.quisque.com/fr/chasses/crypto/vigenere1.asmx?WSDL</wsdl>
- <name>vigenere1Test</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://soap.achchex.com/exec/btrnsoap.dll/wsdl/IBTRNSOAP</wsdl>
- <name>IBTRNSOAPTest</name>
- <serverType>Apache/2.0.43 (Win32) mod_ssl/2.0.43 OpenSSL/0.9.6g # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.costudio.com/WSLinkChecker.asmx?WSDL</wsdl>
- <name>WSLinkCheckerTest</name>
- <serverType>Microsoft-IIS/6.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.webservicex.com/geoipservice.asmx?WSDL</wsdl>
- <name>geoipserviceTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.myweb-services.com/server/ShoppingBasket.wsdl</wsdl>
- <name>ShoppingBasketTest</name>
- <serverType>Apache/1.3.20 Sun Cobalt (Unix) mod_throttle/3.1.2 Chili!Soft-ASP/3.6.2 mod_ssl/2.8.4 OpenSSL/0.9.6b PHP/4.1.2 mod_auth_pam_external/0.1 FrontPage/4.0.4.3 mod_perl/1.25 # PHP/4.1.2</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.closerfar.com/dic2.asmx?WSDL</wsdl>
- <name>dic2Test2</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://69.194.99.154/av/wsdl/ITAddressValidations</wsdl>
- <name>ITAddressValidationsTest2</name>
- <serverType>Apache/1.3.28 (Win32) # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.closerfar.com/engtoarabic.asmx?WSDL</wsdl>
- <name>engtoarabicTest2</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.ingig.com/channels.asmx?WSDL</wsdl>
- <name>channelsTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.javaportal.it/kservices/JIPComuni?wsdl</wsdl>
- <name>JIPComuniTest</name>
- <serverType>Apache-AdvancedExtranetServer/1.3.26 (Mandrake Linux/6.1mdk) mod_jk/1.2.1 auth_ldap/1.6.0 mod_ssl/2.8.10 OpenSSL/0.9.6g sxnet/1.2.4 PHP/4.2.3 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.quisque.com/fr/chasses/crypto/hill.asmx?WSDL</wsdl>
- <name>hillTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.tilisoft.com/ws/eyeVeri/eyeVeri.asmx?WSDL</wsdl>
- <name>eyeVeriTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.strikeiron.com/WebServices/SMSMessagingService.asmx?WSDL</wsdl>
- <name>SMSMessagingServiceTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.strikeiron.com/WebServices/taxdata.asmx?WSDL</wsdl>
- <name>taxdataTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://smsserver.dotnetisp.com/ServiceSMS.asmx?WSDL</wsdl>
- <name>ServiceSMSTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.quisque.com/fr/chasses/crypto/crypta.asmx?WSDL</wsdl>
- <name>cryptaTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.netkoder.dk/postnummerws.asmx?wsdl</wsdl>
- <name>postnummerwsTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://addressmeister.bizware.com/service/wsdl/server.soap.wsdl</wsdl>
- <name>serverTest2</name>
- <serverType>Apache/1.3.26 (Unix) mod_ssl/2.8.10 OpenSSL/0.9.6b PHP/4.3.6 # PHP/4.3.6</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://server.dotnetisp.com/webservices/dotnetisp/src2html.asmx?WSDL</wsdl>
- <name>src2htmlTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.myweb-services.com/server/UserApps.wsdl</wsdl>
- <name>UserAppsTest</name>
- <serverType>Apache/1.3.20 Sun Cobalt (Unix) mod_throttle/3.1.2 Chili!Soft-ASP/3.6.2 mod_ssl/2.8.4 OpenSSL/0.9.6b PHP/4.1.2 mod_auth_pam_external/0.1 FrontPage/4.0.4.3 mod_perl/1.25 # PHP/4.1.2</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://webservices.mio.it/sendsms.asmx?WSDL</wsdl>
- <name>sendsmsTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://server.dotnetisp.com/webservices/dotnetisp/codepostal.asmx?WSDL</wsdl>
- <name>codepostalTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.strikeiron.com/webservices/medicaredata.asmx?WSDL</wsdl>
- <name>medicaredataTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.strikeiron.com/WebServices/dataenhancement.asmx?WSDL</wsdl>
- <name>dataenhancementTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://server.dotnetisp.com/webservices/dotnetisp/ville.asmx?WSDL</wsdl>
- <name>villeTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://webservices.wolfram.com/services/Integrator/Integrate.m?wsdl</wsdl>
- <name>IntegrateTest</name>
- <serverType>Apache Coyote/1.0 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.javaportal.it/kservices/JIPCodice?wsdl</wsdl>
- <name>JIPCodiceTest</name>
- <serverType>Apache-AdvancedExtranetServer/1.3.26 (Mandrake Linux/6.1mdk) mod_jk/1.2.1 auth_ldap/1.6.0 mod_ssl/2.8.10 OpenSSL/0.9.6g sxnet/1.2.4 PHP/4.2.3 # </serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.strikeiron.com/WebServices/datageneration.asmx?WSDL</wsdl>
- <name>datagenerationTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/DuplicateArrayTest.asmx?wsdl</wsdl>
- <name>DuplicateArrayTestTest</name>
- <serverType>Mono-XSP Server/0.13.0.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>true</clientTest>
- </service>
- <service>
- <wsdl>http://localhost:8080/SessionCounter.asmx?wsdl</wsdl>
- <name>SessionCounterTest</name>
- <serverType>Mono-XSP Server/0.13.0.0 128 # Mono</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>true</clientTest>
- </service>
- <service>
- <wsdl>http://www.xignite.com/xIndices.asmx?WSDL</wsdl>
- <name>xIndicesTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://smsserver.dotnetisp.com/servicesms.asmx?WSDL</wsdl>
- <name>servicesmsTest</name>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://services.aonaware.com/DictService/DictService.asmx?WSDL</wsdl>
- <name>DictServiceTest</name>
- <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xignite.com/xCurrencies.asmx?WSDL</wsdl>
- <name>xCurrenciesTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://xml.whereisthatip.com/ip-location-service.wsdl</wsdl>
- <name>iplocationserviceTest</name>
- <serverType>Apache/2.0.49 (Unix) PHP/5.0.0RC2 # PHP/5.0.0RC2</serverType>
- <protocols>
- <protocol>Soap</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- <service>
- <wsdl>http://www.xignite.com/xHistorical.asmx?WSDL</wsdl>
- <name>xHistoricalTest</name>
- <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
- <protocols>
- <protocol>Soap</protocol>
- <protocol>HttpGet</protocol>
- <protocol>HttpPost</protocol>
- </protocols>
- <clientTest>false</clientTest>
- </service>
- </services>
|