2
0

services.xml 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <services xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <service>
  4. <wsdl>http://upload.eraserver.net/circle24/autoloan.asmx?wsdl</wsdl>
  5. <name>autoloanTest</name>
  6. <serverType>Microsoft-IIS/5.0 # </serverType>
  7. <protocols>
  8. <protocol>Soap</protocol>
  9. <protocol>HttpGet</protocol>
  10. <protocol>HttpPost</protocol>
  11. </protocols>
  12. <clientTest>false</clientTest>
  13. </service>
  14. <service>
  15. <wsdl>http://www.kannadakasturi.com/WebServices/kannadakasturiwebservice.asmx?WSDL</wsdl>
  16. <name>kannadakasturiwebserviceTest</name>
  17. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  18. <protocols>
  19. <protocol>Soap</protocol>
  20. <protocol>HttpGet</protocol>
  21. <protocol>HttpPost</protocol>
  22. </protocols>
  23. <clientTest>false</clientTest>
  24. </service>
  25. <service>
  26. <wsdl>http://www.esynaps.com/WebServices/eSynapsSearch.asmx?WSDL</wsdl>
  27. <name>eSynapsSearchTest</name>
  28. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  29. <protocols>
  30. <protocol>Soap</protocol>
  31. </protocols>
  32. <clientTest>false</clientTest>
  33. </service>
  34. <service>
  35. <wsdl>http://www.codemechanisms.co.uk/WebServices/UNSPSC.asmx?WSDL</wsdl>
  36. <name>UNSPSCTest</name>
  37. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  38. <protocols>
  39. <protocol>Soap</protocol>
  40. </protocols>
  41. <clientTest>false</clientTest>
  42. </service>
  43. <service>
  44. <wsdl>http://www.xmlme.com/WSCustNews.asmx?WSDL</wsdl>
  45. <name>WSCustNewsTest</name>
  46. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  47. <protocols>
  48. <protocol>Soap</protocol>
  49. </protocols>
  50. <clientTest>false</clientTest>
  51. </service>
  52. <service>
  53. <wsdl>http://arcweb.esri.com/services/v2/Proximity.wsdl</wsdl>
  54. <name>ProximityTest</name>
  55. <serverType>Netscape-Enterprise/6.0 # </serverType>
  56. <protocols>
  57. <protocol>Soap</protocol>
  58. </protocols>
  59. <clientTest>false</clientTest>
  60. </service>
  61. <service>
  62. <wsdl>http://addison.ra.cwru.edu/orc/calendar_copy/server.php?wsdl</wsdl>
  63. <name>serverTest</name>
  64. <serverType>Microsoft-IIS/5.0 # ASP.NET,PHP/4.3.1</serverType>
  65. <protocols>
  66. <protocol>Soap</protocol>
  67. </protocols>
  68. <clientTest>false</clientTest>
  69. </service>
  70. <service>
  71. <wsdl>http://xml.redcoal.net/SMSSOAP/xmlserver.wsdl</wsdl>
  72. <name>xmlserverTest</name>
  73. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  74. <protocols>
  75. <protocol>Soap</protocol>
  76. </protocols>
  77. <clientTest>false</clientTest>
  78. </service>
  79. <service>
  80. <wsdl>http://ws2.serviceobjects.net/ft/FastTax.asmx?WSDL</wsdl>
  81. <name>FastTaxTest</name>
  82. <serverType>Microsoft-IIS/5.0 # </serverType>
  83. <protocols>
  84. <protocol>Soap</protocol>
  85. <protocol>HttpGet</protocol>
  86. <protocol>HttpPost</protocol>
  87. </protocols>
  88. <clientTest>false</clientTest>
  89. </service>
  90. <service>
  91. <wsdl>http://xml.nig.ac.jp/wsdl/ClustalW.wsdl</wsdl>
  92. <name>ClustalWTest</name>
  93. <serverType>GLUE/3.2.1,Apache Coyote/1.0 # </serverType>
  94. <protocols>
  95. <protocol>Soap</protocol>
  96. </protocols>
  97. <clientTest>false</clientTest>
  98. </service>
  99. <service>
  100. <wsdl>http://www.marotz.se/scripts/searchperson.exe/wsdl/ISearchSwedishPerson</wsdl>
  101. <name>ISearchSwedishPersonTest</name>
  102. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  103. <protocols>
  104. <protocol>Soap</protocol>
  105. </protocols>
  106. <clientTest>false</clientTest>
  107. </service>
  108. <service>
  109. <wsdl>http://www.xmlme.com/WSDailyXml.asmx?WSDL</wsdl>
  110. <name>WSDailyXmlTest</name>
  111. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  112. <protocols>
  113. <protocol>Soap</protocol>
  114. </protocols>
  115. <clientTest>false</clientTest>
  116. </service>
  117. <service>
  118. <wsdl>http://www.dev1.eraserver.net/REFLECTIONIT/Html2xml.asmx?WSDL</wsdl>
  119. <name>Html2xmlTest</name>
  120. <protocols>
  121. <protocol>Soap</protocol>
  122. <protocol>HttpGet</protocol>
  123. <protocol>HttpPost</protocol>
  124. </protocols>
  125. <clientTest>false</clientTest>
  126. </service>
  127. <service>
  128. <wsdl>http://www.barnaland.is/dev/puki.asmx?WSDL</wsdl>
  129. <name>pukiTest</name>
  130. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  131. <protocols>
  132. <protocol>Soap</protocol>
  133. </protocols>
  134. <clientTest>false</clientTest>
  135. </service>
  136. <service>
  137. <wsdl>http://www.hkwizard.com/WeatherService.asmx?wsdl</wsdl>
  138. <name>WeatherServiceTest</name>
  139. <serverType>Microsoft-IIS/5.0 # </serverType>
  140. <protocols>
  141. <protocol>Soap</protocol>
  142. </protocols>
  143. <clientTest>false</clientTest>
  144. </service>
  145. <service>
  146. <wsdl>http://www.dl-me.com/webservices/dic2.asmx?WSDL</wsdl>
  147. <name>dic2Test</name>
  148. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  149. <protocols>
  150. <protocol>Soap</protocol>
  151. </protocols>
  152. <clientTest>false</clientTest>
  153. </service>
  154. <service>
  155. <wsdl>http://www.xignite.com/xoptions.asmx?WSDL</wsdl>
  156. <name>xoptionsTest</name>
  157. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  158. <protocols>
  159. <protocol>Soap</protocol>
  160. <protocol>HttpGet</protocol>
  161. <protocol>HttpPost</protocol>
  162. </protocols>
  163. <clientTest>false</clientTest>
  164. </service>
  165. <service>
  166. <wsdl>http://wsdl.wsdlfeeds.com/holidays.cfc?wsdl</wsdl>
  167. <name>holidaysTest</name>
  168. <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>
  169. <protocols>
  170. <protocol>Soap</protocol>
  171. </protocols>
  172. <clientTest>false</clientTest>
  173. </service>
  174. <service>
  175. <wsdl>http://scores.serviceobjects.com/CupScores.asmx?WSDL</wsdl>
  176. <name>CupScoresTest</name>
  177. <serverType>Microsoft-IIS/5.0 # </serverType>
  178. <protocols>
  179. <protocol>Soap</protocol>
  180. <protocol>HttpGet</protocol>
  181. <protocol>HttpPost</protocol>
  182. </protocols>
  183. <clientTest>false</clientTest>
  184. </service>
  185. <service>
  186. <wsdl>http://soap.systinet.net/demos/Newsfeed/wsdl</wsdl>
  187. <name>NewsfeedTest</name>
  188. <serverType>Systinet WASP Server for Java/4.6.1 (Java/1.4.2; Linux/2.4.20-24.7) # </serverType>
  189. <protocols>
  190. <protocol>Soap</protocol>
  191. </protocols>
  192. <clientTest>false</clientTest>
  193. </service>
  194. <service>
  195. <wsdl>http://www.xmlme.com/WSElectronics.asmx?WSDL</wsdl>
  196. <name>WSElectronicsTest</name>
  197. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  198. <protocols>
  199. <protocol>Soap</protocol>
  200. </protocols>
  201. <clientTest>false</clientTest>
  202. </service>
  203. <service>
  204. <wsdl>http://arcweb.esri.com/services/v2/AddressFinder.wsdl</wsdl>
  205. <name>AddressFinderTest</name>
  206. <serverType>Netscape-Enterprise/6.0 # </serverType>
  207. <protocols>
  208. <protocol>Soap</protocol>
  209. </protocols>
  210. <clientTest>false</clientTest>
  211. </service>
  212. <service>
  213. <wsdl>http://www.xmlme.com/WSVideoGames.asmx?WSDL</wsdl>
  214. <name>WSVideoGamesTest</name>
  215. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  216. <protocols>
  217. <protocol>Soap</protocol>
  218. </protocols>
  219. <clientTest>false</clientTest>
  220. </service>
  221. <service>
  222. <wsdl>http://www.webservicex.net/braille.asmx?WSDL</wsdl>
  223. <name>brailleTest</name>
  224. <protocols>
  225. <protocol>Soap</protocol>
  226. <protocol>HttpGet</protocol>
  227. <protocol>HttpPost</protocol>
  228. </protocols>
  229. <clientTest>false</clientTest>
  230. </service>
  231. <service>
  232. <wsdl>http://ws.digiposs.com/WorldTime.jws?wsdl</wsdl>
  233. <name>WorldTimeTest</name>
  234. <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>
  235. <protocols>
  236. <protocol>Soap</protocol>
  237. </protocols>
  238. <clientTest>false</clientTest>
  239. </service>
  240. <service>
  241. <wsdl>http://www.cosme.nu/services/pop.php?wsdl</wsdl>
  242. <name>popTest</name>
  243. <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>
  244. <protocols>
  245. <protocol>Soap</protocol>
  246. </protocols>
  247. <clientTest>false</clientTest>
  248. </service>
  249. <service>
  250. <wsdl>http://www.marotz.se/PGPKeyServer/PGPKeyServiceX.exe/wsdl/IPGPKeyServer</wsdl>
  251. <name>IPGPKeyServerTest</name>
  252. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  253. <protocols>
  254. <protocol>Soap</protocol>
  255. </protocols>
  256. <clientTest>false</clientTest>
  257. </service>
  258. <service>
  259. <wsdl>http://www.alanbushtrust.org.uk/soap/compositions.wsdl</wsdl>
  260. <name>compositionsTest</name>
  261. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  262. <protocols>
  263. <protocol>Soap</protocol>
  264. </protocols>
  265. <clientTest>false</clientTest>
  266. </service>
  267. <service>
  268. <wsdl>http://glkev.webs.innerhost.com/glkev_ws/businessnews.asmx?WSDL</wsdl>
  269. <name>businessnewsTest</name>
  270. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  271. <protocols>
  272. <protocol>Soap</protocol>
  273. <protocol>HttpGet</protocol>
  274. <protocol>HttpPost</protocol>
  275. </protocols>
  276. <clientTest>false</clientTest>
  277. </service>
  278. <service>
  279. <wsdl>http://services.develop.co.za/GetLocalTime.asmx?WSDL</wsdl>
  280. <name>GetLocalTimeTest</name>
  281. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  282. <protocols>
  283. <protocol>Soap</protocol>
  284. </protocols>
  285. <clientTest>false</clientTest>
  286. </service>
  287. <service>
  288. <wsdl>http://ws2.serviceobjects.net/ln/lotterynumbers.asmx?WSDL</wsdl>
  289. <name>lotterynumbersTest</name>
  290. <serverType>Microsoft-IIS/5.0 # </serverType>
  291. <protocols>
  292. <protocol>Soap</protocol>
  293. <protocol>HttpGet</protocol>
  294. <protocol>HttpPost</protocol>
  295. </protocols>
  296. <clientTest>false</clientTest>
  297. </service>
  298. <service>
  299. <wsdl>http://www.blackstoneonline.com/webservices/dispenser.xml</wsdl>
  300. <name>dispenserTest</name>
  301. <protocols>
  302. <protocol>Soap</protocol>
  303. <protocol>HttpGet</protocol>
  304. <protocol>HttpPost</protocol>
  305. </protocols>
  306. <clientTest>false</clientTest>
  307. </service>
  308. <service>
  309. <wsdl>http://www.esynaps.com/WebServices/DailyDiblert.asmx?WSDL</wsdl>
  310. <name>DailyDiblertTest</name>
  311. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  312. <protocols>
  313. <protocol>Soap</protocol>
  314. </protocols>
  315. <clientTest>false</clientTest>
  316. </service>
  317. <service>
  318. <wsdl>http://soap.achchex.com/exec/achsoap.dll/wsdl/IACHSOAP</wsdl>
  319. <name>IACHSOAPTest</name>
  320. <serverType>Apache/2.0.43 (Win32) mod_ssl/2.0.43 OpenSSL/0.9.6g # </serverType>
  321. <protocols>
  322. <protocol>Soap</protocol>
  323. </protocols>
  324. <clientTest>false</clientTest>
  325. </service>
  326. <service>
  327. <wsdl>http://transform.dataconcert.com/transform.wsdl</wsdl>
  328. <name>transformTest</name>
  329. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  330. <protocols>
  331. <protocol>Soap</protocol>
  332. </protocols>
  333. <clientTest>false</clientTest>
  334. </service>
  335. <service>
  336. <wsdl>http://icuisine.net/webservices/RecipeService.asmx?WSDL</wsdl>
  337. <name>RecipeServiceTest</name>
  338. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  339. <protocols>
  340. <protocol>Soap</protocol>
  341. <protocol>HttpGet</protocol>
  342. <protocol>HttpPost</protocol>
  343. </protocols>
  344. <clientTest>false</clientTest>
  345. </service>
  346. <service>
  347. <wsdl>http://www.bitounis.com/WebEvents/events.asmx?WSDL</wsdl>
  348. <name>eventsTest</name>
  349. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  350. <protocols>
  351. <protocol>Soap</protocol>
  352. <protocol>HttpGet</protocol>
  353. <protocol>HttpPost</protocol>
  354. </protocols>
  355. <clientTest>false</clientTest>
  356. </service>
  357. <service>
  358. <wsdl>http://www.OneOutBox.com/wsdl/FreeFaxService.wsdl</wsdl>
  359. <name>FreeFaxServiceTest</name>
  360. <serverType>Apache/1.3.27 (Unix) PHP/4.2.3 FrontPage/5.0.2.2510 Rewrit/1.1a # </serverType>
  361. <protocols>
  362. <protocol>Soap</protocol>
  363. </protocols>
  364. <clientTest>false</clientTest>
  365. </service>
  366. <service>
  367. <wsdl>http://www.ebi.ac.uk/xembl/XEMBL.wsdl</wsdl>
  368. <name>XEMBLTest</name>
  369. <serverType>Apache/1.3.12 (Unix) ApacheJServ/1.1 # </serverType>
  370. <protocols>
  371. <protocol>Soap</protocol>
  372. </protocols>
  373. <clientTest>false</clientTest>
  374. </service>
  375. <service>
  376. <wsdl>http://www.xmethods.net/sd/2001/CATrafficService.wsdl</wsdl>
  377. <name>CATrafficServiceTest</name>
  378. <serverType>Enhydra-MultiServer/3.1.1b1 # </serverType>
  379. <protocols>
  380. <protocol>Soap</protocol>
  381. </protocols>
  382. <clientTest>false</clientTest>
  383. </service>
  384. <service>
  385. <wsdl>http://www.foxcentral.net/foxcentral.wsdl</wsdl>
  386. <name>foxcentralTest</name>
  387. <serverType> # </serverType>
  388. <protocols>
  389. <protocol>Soap</protocol>
  390. </protocols>
  391. <clientTest>false</clientTest>
  392. </service>
  393. <service>
  394. <wsdl>http://www.cosme.nu/services/convert.php?wsdl</wsdl>
  395. <name>convertTest</name>
  396. <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>
  397. <protocols>
  398. <protocol>Soap</protocol>
  399. </protocols>
  400. <clientTest>false</clientTest>
  401. </service>
  402. <service>
  403. <wsdl>http://www.ripedev.com/webservices/ZipCode.asmx?WSDL</wsdl>
  404. <name>ZipCodeTest</name>
  405. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  406. <protocols>
  407. <protocol>Soap</protocol>
  408. </protocols>
  409. <clientTest>false</clientTest>
  410. </service>
  411. <service>
  412. <wsdl>http://ws.cdyne.com/psaddress/addresslookup.asmx?wsdl</wsdl>
  413. <name>addresslookupTest</name>
  414. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  415. <protocols>
  416. <protocol>Soap</protocol>
  417. <protocol>HttpGet</protocol>
  418. <protocol>HttpPost</protocol>
  419. </protocols>
  420. <clientTest>false</clientTest>
  421. </service>
  422. <service>
  423. <wsdl>http://www.strikeiron.com/scripts/statistics.asmx?WSDL</wsdl>
  424. <name>statisticsTest</name>
  425. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  426. <protocols>
  427. <protocol>Soap</protocol>
  428. </protocols>
  429. <clientTest>false</clientTest>
  430. </service>
  431. <service>
  432. <wsdl>http://www.bitounis.com/W3CParser/LogFileParser.asmx?WSDL</wsdl>
  433. <name>LogFileParserTest</name>
  434. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  435. <protocols>
  436. <protocol>Soap</protocol>
  437. <protocol>HttpGet</protocol>
  438. <protocol>HttpPost</protocol>
  439. </protocols>
  440. <clientTest>false</clientTest>
  441. </service>
  442. <service>
  443. <wsdl>http://www.webservicex.net/NAICS.asmx?wsdl</wsdl>
  444. <name>NAICSTest</name>
  445. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  446. <protocols>
  447. <protocol>Soap</protocol>
  448. <protocol>HttpGet</protocol>
  449. <protocol>HttpPost</protocol>
  450. </protocols>
  451. <clientTest>false</clientTest>
  452. </service>
  453. <service>
  454. <wsdl>http://ws.cdyne.com/emailverify/ev.asmx?wsdl</wsdl>
  455. <name>evTest</name>
  456. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  457. <protocols>
  458. <protocol>Soap</protocol>
  459. <protocol>HttpGet</protocol>
  460. <protocol>HttpPost</protocol>
  461. </protocols>
  462. <clientTest>false</clientTest>
  463. </service>
  464. <service>
  465. <wsdl>http://62.212.78.36/cgi-bin/WagAddressServerSingle.exe/wsdl/IWagAddressServerSingle</wsdl>
  466. <name>IWagAddressServerSingleTest</name>
  467. <serverType>Apache/1.3.19 (Win32) # </serverType>
  468. <protocols>
  469. <protocol>Soap</protocol>
  470. </protocols>
  471. <clientTest>false</clientTest>
  472. </service>
  473. <service>
  474. <wsdl>http://slashdemocracy.org/links/ws4gotze.wsdl</wsdl>
  475. <name>ws4gotzeTest</name>
  476. <serverType>Apache # </serverType>
  477. <protocols>
  478. <protocol>Soap</protocol>
  479. </protocols>
  480. <clientTest>false</clientTest>
  481. </service>
  482. <service>
  483. <wsdl>http://java.rus.uni-stuttgart.de/quiz/quiz.wsdl</wsdl>
  484. <name>quizTest</name>
  485. <serverType>Microsoft-IIS/5.0,GLUE/3.2.3 # </serverType>
  486. <protocols>
  487. <protocol>Soap</protocol>
  488. </protocols>
  489. <clientTest>false</clientTest>
  490. </service>
  491. <service>
  492. <wsdl>http://www.zanetti-dev.com/scripts/zpop3ws.exe/wsdl/IZPOP3</wsdl>
  493. <name>IZPOP3Test</name>
  494. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  495. <protocols>
  496. <protocol>Soap</protocol>
  497. </protocols>
  498. <clientTest>false</clientTest>
  499. </service>
  500. <service>
  501. <wsdl>http://www.gama-system.com/webservices/stockquotes.asmx?wsdl</wsdl>
  502. <name>stockquotesTest</name>
  503. <serverType>Microsoft-IIS/5.0 # </serverType>
  504. <protocols>
  505. <protocol>Soap</protocol>
  506. <protocol>HttpGet</protocol>
  507. <protocol>HttpPost</protocol>
  508. </protocols>
  509. <clientTest>false</clientTest>
  510. </service>
  511. <service>
  512. <wsdl>http://www.webservicex.net/barcode.asmx?WSDL</wsdl>
  513. <name>barcodeTest</name>
  514. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  515. <protocols>
  516. <protocol>Soap</protocol>
  517. <protocol>HttpGet</protocol>
  518. <protocol>HttpPost</protocol>
  519. </protocols>
  520. <clientTest>false</clientTest>
  521. </service>
  522. <service>
  523. <wsdl>http://service.graphmagic.com/GMService/GraphMagic.asmx?wsdl</wsdl>
  524. <name>GraphMagicTest</name>
  525. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  526. <protocols>
  527. <protocol>Soap</protocol>
  528. </protocols>
  529. <clientTest>false</clientTest>
  530. </service>
  531. <service>
  532. <wsdl>http://developerdays.com/cgi-bin/tempconverter.exe/wsdl/ITempConverter</wsdl>
  533. <name>ITempConverterTest</name>
  534. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  535. <protocols>
  536. <protocol>Soap</protocol>
  537. </protocols>
  538. <clientTest>false</clientTest>
  539. </service>
  540. <service>
  541. <wsdl>http://www.webservicex.net/icd10.asmx?WSDL</wsdl>
  542. <name>icd10Test</name>
  543. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  544. <protocols>
  545. <protocol>Soap</protocol>
  546. <protocol>HttpGet</protocol>
  547. <protocol>HttpPost</protocol>
  548. </protocols>
  549. <clientTest>false</clientTest>
  550. </service>
  551. <service>
  552. <wsdl>http://www.marotz.se/scripts/SlashdotHeadlines.exe/wsdl/ISlashdotHeadlineProvider</wsdl>
  553. <name>ISlashdotHeadlineProviderTest</name>
  554. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  555. <protocols>
  556. <protocol>Soap</protocol>
  557. </protocols>
  558. <clientTest>false</clientTest>
  559. </service>
  560. <service>
  561. <wsdl>http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl</wsdl>
  562. <name>CurrencyExchangeServiceTest</name>
  563. <serverType> # </serverType>
  564. <protocols>
  565. <protocol>Soap</protocol>
  566. </protocols>
  567. <clientTest>false</clientTest>
  568. </service>
  569. <service>
  570. <wsdl>http://demo.soapam.com/services/FedEpayDirectory/FedEpayDirectoryService.wsdl</wsdl>
  571. <name>FedEpayDirectoryServiceTest</name>
  572. <serverType>NuWave Technologies SOAP/AM(tm) Server - Version 1.0.4002 (SP2) # </serverType>
  573. <protocols>
  574. <protocol>Soap</protocol>
  575. </protocols>
  576. <clientTest>false</clientTest>
  577. </service>
  578. <service>
  579. <wsdl>http://webservices.eraserver.net/zipcoderesolver/zipcoderesolver.asmx?WSDL</wsdl>
  580. <name>zipcoderesolverTest</name>
  581. <serverType>Microsoft-IIS/5.0 # </serverType>
  582. <protocols>
  583. <protocol>Soap</protocol>
  584. <protocol>HttpGet</protocol>
  585. <protocol>HttpPost</protocol>
  586. </protocols>
  587. <clientTest>false</clientTest>
  588. </service>
  589. <service>
  590. <wsdl>http://www.webservicex.net/icd9toicd10.asmx?WSDL</wsdl>
  591. <name>icd9toicd10Test</name>
  592. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  593. <protocols>
  594. <protocol>Soap</protocol>
  595. <protocol>HttpGet</protocol>
  596. <protocol>HttpPost</protocol>
  597. </protocols>
  598. <clientTest>false</clientTest>
  599. </service>
  600. <service>
  601. <wsdl>http://www.ebob42.com/cgi-bin/Romulan.exe/wsdl/IRoman</wsdl>
  602. <name>IRomanTest</name>
  603. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  604. <protocols>
  605. <protocol>Soap</protocol>
  606. </protocols>
  607. <clientTest>false</clientTest>
  608. </service>
  609. <service>
  610. <wsdl>http://www.sidespace.com/ws/fission/fissiondotnet.php?wsdl</wsdl>
  611. <name>fissiondotnetTest</name>
  612. <serverType>Apache/1.3.29 # PHP/4.3.4</serverType>
  613. <protocols>
  614. <protocol>Soap</protocol>
  615. </protocols>
  616. <clientTest>false</clientTest>
  617. </service>
  618. <service>
  619. <wsdl>http://www.x-ws.de/cgi-bin/bork/service.wsdl</wsdl>
  620. <name>serviceTest</name>
  621. <serverType>Apache/1.3.27 (Linux/SuSE) PHP/4.3.4 mod_perl/1.27 # </serverType>
  622. <protocols>
  623. <protocol>Soap</protocol>
  624. </protocols>
  625. <clientTest>false</clientTest>
  626. </service>
  627. <service>
  628. <wsdl>http://www.esynaps.com/WebServices/eSynapsMonitor.wsdl</wsdl>
  629. <name>eSynapsMonitorTest</name>
  630. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  631. <protocols>
  632. <protocol>Soap</protocol>
  633. </protocols>
  634. <clientTest>false</clientTest>
  635. </service>
  636. <service>
  637. <wsdl>http://www.xmlme.com/WSAmazonBox.asmx?WSDL</wsdl>
  638. <name>WSAmazonBoxTest</name>
  639. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  640. <protocols>
  641. <protocol>Soap</protocol>
  642. </protocols>
  643. <clientTest>false</clientTest>
  644. </service>
  645. <service>
  646. <wsdl>http://www.west-wind.com/wconnect/soap/wwhelpservice.wsdl</wsdl>
  647. <name>wwhelpserviceTest</name>
  648. <serverType> # </serverType>
  649. <protocols>
  650. <protocol>Soap</protocol>
  651. </protocols>
  652. <clientTest>false</clientTest>
  653. </service>
  654. <service>
  655. <wsdl>http://www.oakleaf.ws/cfrsectws/cfrsectws.asmx?wsdl</wsdl>
  656. <name>cfrsectwsTest</name>
  657. <serverType>Microsoft-IIS/5.0 # </serverType>
  658. <protocols>
  659. <protocol>Soap</protocol>
  660. <protocol>HttpGet</protocol>
  661. <protocol>HttpPost</protocol>
  662. </protocols>
  663. <clientTest>false</clientTest>
  664. </service>
  665. <service>
  666. <wsdl>http://webservices.mp3.com/MP3Charts.wsdl</wsdl>
  667. <name>MP3ChartsTest</name>
  668. <protocols>
  669. <protocol>Soap</protocol>
  670. </protocols>
  671. <clientTest>false</clientTest>
  672. </service>
  673. <service>
  674. <wsdl>http://www.bitounis.com/RSAFunctions/RSAFuncs.asmx?WSDL</wsdl>
  675. <name>RSAFuncsTest</name>
  676. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  677. <protocols>
  678. <protocol>Soap</protocol>
  679. <protocol>HttpGet</protocol>
  680. <protocol>HttpPost</protocol>
  681. </protocols>
  682. <clientTest>false</clientTest>
  683. </service>
  684. <service>
  685. <wsdl>http://soap.systinet.net/demos/RpmFinder/wsdl</wsdl>
  686. <name>RpmFinderTest</name>
  687. <serverType>Systinet WASP Server for Java/4.6.1 (Java/1.4.2; Linux/2.4.20-24.7) # </serverType>
  688. <protocols>
  689. <protocol>Soap</protocol>
  690. </protocols>
  691. <clientTest>false</clientTest>
  692. </service>
  693. <service>
  694. <wsdl>http://www.ebob42.com/cgi-bin/DrBobsClinic.exe/wsdl/IHeadline</wsdl>
  695. <name>IHeadlineTest</name>
  696. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  697. <protocols>
  698. <protocol>Soap</protocol>
  699. </protocols>
  700. <clientTest>false</clientTest>
  701. </service>
  702. <service>
  703. <wsdl>http://www.webservicex.net/periodictable.asmx?wsdl</wsdl>
  704. <name>periodictableTest</name>
  705. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  706. <protocols>
  707. <protocol>Soap</protocol>
  708. <protocol>HttpGet</protocol>
  709. <protocol>HttpPost</protocol>
  710. </protocols>
  711. <clientTest>false</clientTest>
  712. </service>
  713. <service>
  714. <wsdl>http://www.maillocate.com/soap/index.php?wsdl</wsdl>
  715. <name>indexTest</name>
  716. <serverType>Apache/2.0.40 (Red Hat Linux) # PHP/4.2.2</serverType>
  717. <protocols>
  718. <protocol>Soap</protocol>
  719. </protocols>
  720. <clientTest>false</clientTest>
  721. </service>
  722. <service>
  723. <wsdl>http://freene.dynip.com/RentDB2/RentDB2.asmx?wsdl</wsdl>
  724. <name>RentDB2Test</name>
  725. <protocols>
  726. <protocol>Soap</protocol>
  727. </protocols>
  728. <clientTest>false</clientTest>
  729. </service>
  730. <service>
  731. <wsdl>http://iis1.grantparksoftware.com:8080/gps/pos_public.asmx?WSDL</wsdl>
  732. <name>pos_publicTest</name>
  733. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  734. <protocols>
  735. <protocol>Soap</protocol>
  736. <protocol>HttpGet</protocol>
  737. <protocol>HttpPost</protocol>
  738. </protocols>
  739. <clientTest>false</clientTest>
  740. </service>
  741. <service>
  742. <wsdl>http://www.framewerks.com/WebServices/fWArticleService/fwArticles.asmx?WSDL</wsdl>
  743. <name>fwArticlesTest</name>
  744. <serverType>Microsoft-IIS/5.0 Geobytes-GeoSelect/2.1.0.1 # ASP.NET</serverType>
  745. <protocols>
  746. <protocol>Soap</protocol>
  747. </protocols>
  748. <clientTest>false</clientTest>
  749. </service>
  750. <service>
  751. <wsdl>http://sandbox.grandcentral.com/services/reports?WSDL</wsdl>
  752. <name>reportsTest</name>
  753. <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>
  754. <protocols>
  755. <protocol>Soap</protocol>
  756. </protocols>
  757. <clientTest>false</clientTest>
  758. </service>
  759. <service>
  760. <wsdl>http://www.webservicex.net/CurrencyConvertor.asmx?wsdl</wsdl>
  761. <name>CurrencyConvertorTest</name>
  762. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  763. <protocols>
  764. <protocol>Soap</protocol>
  765. <protocol>HttpGet</protocol>
  766. <protocol>HttpPost</protocol>
  767. </protocols>
  768. <clientTest>false</clientTest>
  769. </service>
  770. <service>
  771. <wsdl>http://www.x-ws.de/cgi-bin/msn/imstatus.wsdl</wsdl>
  772. <name>imstatusTest</name>
  773. <serverType>Apache/1.3.27 (Linux/SuSE) PHP/4.3.4 mod_perl/1.27 # </serverType>
  774. <protocols>
  775. <protocol>Soap</protocol>
  776. </protocols>
  777. <clientTest>false</clientTest>
  778. </service>
  779. <service>
  780. <wsdl>http://www.esynaps.com/WebServices/MsProxy.asmx?WSDL</wsdl>
  781. <name>MsProxyTest</name>
  782. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  783. <protocols>
  784. <protocol>Soap</protocol>
  785. </protocols>
  786. <clientTest>false</clientTest>
  787. </service>
  788. <service>
  789. <wsdl>http://www.siliconllama.com/services/wsdl/ISOcode2shortformatService.wsdl</wsdl>
  790. <name>ISOcode2shortformatServiceTest</name>
  791. <protocols>
  792. <protocol>Soap</protocol>
  793. </protocols>
  794. <clientTest>false</clientTest>
  795. </service>
  796. <service>
  797. <wsdl>http://www.webservicex.net/usweather.asmx?WSDL</wsdl>
  798. <name>usweatherTest</name>
  799. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  800. <protocols>
  801. <protocol>Soap</protocol>
  802. <protocol>HttpGet</protocol>
  803. <protocol>HttpPost</protocol>
  804. </protocols>
  805. <clientTest>false</clientTest>
  806. </service>
  807. <service>
  808. <wsdl>http://www.forta.com/cf/tips/syndicate.cfc?wsdl</wsdl>
  809. <name>syndicateTest</name>
  810. <serverType>Apache/2.0.43 (Red Hat Linux) # </serverType>
  811. <protocols>
  812. <protocol>Soap</protocol>
  813. </protocols>
  814. <clientTest>false</clientTest>
  815. </service>
  816. <service>
  817. <wsdl>http://clientservice.muse.net/ClientService.asmx?WSDL</wsdl>
  818. <name>ClientServiceTest</name>
  819. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  820. <protocols>
  821. <protocol>Soap</protocol>
  822. <protocol>HttpGet</protocol>
  823. <protocol>HttpPost</protocol>
  824. </protocols>
  825. <clientTest>false</clientTest>
  826. </service>
  827. <service>
  828. <wsdl>http://www.flash-db.com/services/ws/siteInspect.wsdl</wsdl>
  829. <name>siteInspectTest</name>
  830. <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>
  831. <protocols>
  832. <protocol>Soap</protocol>
  833. </protocols>
  834. <clientTest>false</clientTest>
  835. </service>
  836. <service>
  837. <wsdl>http://www.webservicex.net/stockquote.asmx?WSDL</wsdl>
  838. <name>stockquoteTest</name>
  839. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  840. <protocols>
  841. <protocol>Soap</protocol>
  842. <protocol>HttpGet</protocol>
  843. <protocol>HttpPost</protocol>
  844. </protocols>
  845. <clientTest>false</clientTest>
  846. </service>
  847. <service>
  848. <wsdl>http://www.worldwidedesktop.com/spellcheck/spellcheckservice.asmx?wsdl</wsdl>
  849. <name>spellcheckserviceTest</name>
  850. <protocols>
  851. <protocol>Soap</protocol>
  852. <protocol>HttpGet</protocol>
  853. <protocol>HttpPost</protocol>
  854. </protocols>
  855. <clientTest>false</clientTest>
  856. </service>
  857. <service>
  858. <wsdl>http://ws.acrosscommunications.com/TAP.asmx?WSDL</wsdl>
  859. <name>TAPTest</name>
  860. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  861. <protocols>
  862. <protocol>Soap</protocol>
  863. </protocols>
  864. <clientTest>false</clientTest>
  865. </service>
  866. <service>
  867. <wsdl>http://www.xignite.com/xsecurity.asmx?WSDL</wsdl>
  868. <name>xsecurityTest</name>
  869. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  870. <protocols>
  871. <protocol>Soap</protocol>
  872. <protocol>HttpGet</protocol>
  873. <protocol>HttpPost</protocol>
  874. </protocols>
  875. <clientTest>false</clientTest>
  876. </service>
  877. <service>
  878. <wsdl>http://www.codebump.com/services/placelookup.asmx?wsdl</wsdl>
  879. <name>placelookupTest</name>
  880. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  881. <protocols>
  882. <protocol>Soap</protocol>
  883. <protocol>HttpGet</protocol>
  884. <protocol>HttpPost</protocol>
  885. </protocols>
  886. <clientTest>false</clientTest>
  887. </service>
  888. <service>
  889. <wsdl>http://www.aspiringgeek.com/cfc/keyword/sekeyword.cfc?wsdl</wsdl>
  890. <name>sekeywordTest</name>
  891. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  892. <protocols>
  893. <protocol>Soap</protocol>
  894. </protocols>
  895. <clientTest>false</clientTest>
  896. </service>
  897. <service>
  898. <wsdl>http://www.x-ws.de/cgi-bin/eliza/chat.wsdl</wsdl>
  899. <name>chatTest</name>
  900. <serverType>Apache/1.3.27 (Linux/SuSE) PHP/4.3.4 mod_perl/1.27 # </serverType>
  901. <protocols>
  902. <protocol>Soap</protocol>
  903. </protocols>
  904. <clientTest>false</clientTest>
  905. </service>
  906. <service>
  907. <wsdl>http://ws.cdyne.com/FontToGraphic/ftg.asmx?wsdl</wsdl>
  908. <name>ftgTest</name>
  909. <protocols />
  910. <clientTest>false</clientTest>
  911. </service>
  912. <service>
  913. <wsdl>http://ws2.serviceobjects.net/pc/packcost.asmx?WSDL</wsdl>
  914. <name>packcostTest</name>
  915. <serverType>Microsoft-IIS/5.0 # </serverType>
  916. <protocols>
  917. <protocol>Soap</protocol>
  918. <protocol>HttpGet</protocol>
  919. <protocol>HttpPost</protocol>
  920. </protocols>
  921. <clientTest>false</clientTest>
  922. </service>
  923. <service>
  924. <wsdl>http://soap.systinet.net/demos/ZVONSearch/wsdl</wsdl>
  925. <name>ZVONSearchTest</name>
  926. <serverType>Systinet WASP Server for Java/4.6.1 (Java/1.4.2; Linux/2.4.20-24.7) # </serverType>
  927. <protocols>
  928. <protocol>Soap</protocol>
  929. </protocols>
  930. <clientTest>false</clientTest>
  931. </service>
  932. <service>
  933. <wsdl>http://www.richsolutions.com/RichPayments/RichCardValidator.asmx?WSDL</wsdl>
  934. <name>RichCardValidatorTest</name>
  935. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  936. <protocols>
  937. <protocol>Soap</protocol>
  938. <protocol>HttpGet</protocol>
  939. <protocol>HttpPost</protocol>
  940. </protocols>
  941. <clientTest>false</clientTest>
  942. </service>
  943. <service>
  944. <wsdl>http://ww6.borland.com/webservices/BorlandBabel/BorlandBabel.exe/wsdl/IBorlandBabel</wsdl>
  945. <name>IBorlandBabelTest</name>
  946. <serverType>Microsoft-IIS/4.0 # </serverType>
  947. <protocols>
  948. <protocol>Soap</protocol>
  949. </protocols>
  950. <clientTest>false</clientTest>
  951. </service>
  952. <service>
  953. <wsdl>http://www.aspxpressway.com/maincontent/webservices/piglatin.asmx?wsdl</wsdl>
  954. <name>piglatinTest</name>
  955. <serverType>Microsoft-IIS/5.0 # </serverType>
  956. <protocols>
  957. <protocol>Soap</protocol>
  958. <protocol>HttpGet</protocol>
  959. <protocol>HttpPost</protocol>
  960. </protocols>
  961. <clientTest>false</clientTest>
  962. </service>
  963. <service>
  964. <wsdl>http://www.cosme.nu/services/dns.php?wsdl</wsdl>
  965. <name>dnsTest</name>
  966. <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>
  967. <protocols>
  968. <protocol>Soap</protocol>
  969. </protocols>
  970. <clientTest>false</clientTest>
  971. </service>
  972. <service>
  973. <wsdl>http://www.cs.uga.edu/~sent/xmethods/CountryInfoLookup.wsdl</wsdl>
  974. <name>CountryInfoLookupTest</name>
  975. <protocols>
  976. <protocol>Soap</protocol>
  977. </protocols>
  978. <clientTest>false</clientTest>
  979. </service>
  980. <service>
  981. <wsdl>http://live.capescience.com/wsdl/FOPService.wsdl</wsdl>
  982. <name>FOPServiceTest</name>
  983. <protocols>
  984. <protocol>Soap</protocol>
  985. </protocols>
  986. <clientTest>false</clientTest>
  987. </service>
  988. <service>
  989. <wsdl>http://www.swanandmokashi.com/HomePage/WebServices/StockQuotes.asmx?WSDL</wsdl>
  990. <name>StockQuotesTest</name>
  991. <serverType>Microsoft-IIS/5.0 # </serverType>
  992. <protocols>
  993. <protocol>Soap</protocol>
  994. <protocol>HttpGet</protocol>
  995. <protocol>HttpPost</protocol>
  996. </protocols>
  997. <clientTest>false</clientTest>
  998. </service>
  999. <service>
  1000. <wsdl>http://www.scdi.org/~avernet/webservice/yim.wsdl</wsdl>
  1001. <name>yimTest</name>
  1002. <serverType>Apache/1.3.26 (Unix) Debian GNU/Linux # PHP/4.1.2</serverType>
  1003. <protocols>
  1004. <protocol>Soap</protocol>
  1005. </protocols>
  1006. <clientTest>false</clientTest>
  1007. </service>
  1008. <service>
  1009. <wsdl>http://beta2.eraserver.net/webservices/mxchecker/mxchecker.asmx?WSDL</wsdl>
  1010. <name>mxcheckerTest</name>
  1011. <serverType>Microsoft-IIS/5.0 # </serverType>
  1012. <protocols>
  1013. <protocol>Soap</protocol>
  1014. <protocol>HttpGet</protocol>
  1015. <protocol>HttpPost</protocol>
  1016. </protocols>
  1017. <clientTest>false</clientTest>
  1018. </service>
  1019. <service>
  1020. <wsdl>http://ws.cdyne.com/whoisquery/whois.asmx?wsdl</wsdl>
  1021. <name>whoisTest</name>
  1022. <protocols>
  1023. <protocol>Soap</protocol>
  1024. <protocol>HttpGet</protocol>
  1025. <protocol>HttpPost</protocol>
  1026. </protocols>
  1027. <clientTest>false</clientTest>
  1028. </service>
  1029. <service>
  1030. <wsdl>http://ws.interfax.net/dfs.asmx?WSDL</wsdl>
  1031. <name>dfsTest</name>
  1032. <serverType>Microsoft-IIS/5.0 # </serverType>
  1033. <protocols>
  1034. <protocol>Soap</protocol>
  1035. <protocol>HttpGet</protocol>
  1036. <protocol>HttpPost</protocol>
  1037. </protocols>
  1038. <clientTest>false</clientTest>
  1039. </service>
  1040. <service>
  1041. <wsdl>http://www.xignite.com/xworldnews.asmx?WSDL</wsdl>
  1042. <name>xworldnewsTest</name>
  1043. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1044. <protocols>
  1045. <protocol>Soap</protocol>
  1046. <protocol>HttpGet</protocol>
  1047. <protocol>HttpPost</protocol>
  1048. </protocols>
  1049. <clientTest>false</clientTest>
  1050. </service>
  1051. <service>
  1052. <wsdl>http://www.xmlme.com/WSDailyNet.asmx?WSDL</wsdl>
  1053. <name>WSDailyNetTest</name>
  1054. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  1055. <protocols>
  1056. <protocol>Soap</protocol>
  1057. </protocols>
  1058. <clientTest>false</clientTest>
  1059. </service>
  1060. <service>
  1061. <wsdl>http://webservices.matlus.com/scripts/sessionservice.dll/wsdl/IMsSessionBrokerService</wsdl>
  1062. <name>IMsSessionBrokerServiceTest</name>
  1063. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  1064. <protocols>
  1065. <protocol>Soap</protocol>
  1066. </protocols>
  1067. <clientTest>false</clientTest>
  1068. </service>
  1069. <service>
  1070. <wsdl>http://www.xmethods.net/sd/2001/BNQuoteService.wsdl</wsdl>
  1071. <name>BNQuoteServiceTest</name>
  1072. <serverType>Enhydra-MultiServer/3.1.1b1 # </serverType>
  1073. <protocols>
  1074. <protocol>Soap</protocol>
  1075. </protocols>
  1076. <clientTest>false</clientTest>
  1077. </service>
  1078. <service>
  1079. <wsdl>http://www.gxchart.com/webchart.wsdl</wsdl>
  1080. <name>webchartTest</name>
  1081. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1082. <protocols>
  1083. <protocol>Soap</protocol>
  1084. </protocols>
  1085. <clientTest>false</clientTest>
  1086. </service>
  1087. <service>
  1088. <wsdl>http://ws2.serviceobjects.net/ds/domainspy.asmx?WSDL</wsdl>
  1089. <name>domainspyTest</name>
  1090. <serverType>Microsoft-IIS/5.0 # </serverType>
  1091. <protocols>
  1092. <protocol>Soap</protocol>
  1093. <protocol>HttpGet</protocol>
  1094. <protocol>HttpPost</protocol>
  1095. </protocols>
  1096. <clientTest>false</clientTest>
  1097. </service>
  1098. <service>
  1099. <wsdl>http://ewsdemo.webmethods.com/WmEWS/directory/wsd.dsp?interface=wmpayflow.sample&amp;service=Credit_Approval</wsdl>
  1100. <name>Credit_ApprovalTest</name>
  1101. <serverType> # </serverType>
  1102. <protocols>
  1103. <protocol>Soap</protocol>
  1104. </protocols>
  1105. <clientTest>false</clientTest>
  1106. </service>
  1107. <service>
  1108. <wsdl>http://sms.idws.com/soap/smsservice.dll/wsdl/ISMSService</wsdl>
  1109. <name>ISMSServiceTest</name>
  1110. <serverType>Microsoft-IIS/5.0 # </serverType>
  1111. <protocols>
  1112. <protocol>Soap</protocol>
  1113. </protocols>
  1114. <clientTest>false</clientTest>
  1115. </service>
  1116. <service>
  1117. <wsdl>http://glkev.webs.innerhost.com/glkev_ws/HistoricalStockQuotes.asmx?WSDL</wsdl>
  1118. <name>HistoricalStockQuotesTest</name>
  1119. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1120. <protocols>
  1121. <protocol>Soap</protocol>
  1122. <protocol>HttpGet</protocol>
  1123. <protocol>HttpPost</protocol>
  1124. </protocols>
  1125. <clientTest>false</clientTest>
  1126. </service>
  1127. <service>
  1128. <wsdl>http://ws2.serviceobjects.net/fw/FastWeather.asmx?WSDL</wsdl>
  1129. <name>FastWeatherTest</name>
  1130. <serverType>Microsoft-IIS/5.0 # </serverType>
  1131. <protocols>
  1132. <protocol>Soap</protocol>
  1133. <protocol>HttpGet</protocol>
  1134. <protocol>HttpPost</protocol>
  1135. </protocols>
  1136. <clientTest>false</clientTest>
  1137. </service>
  1138. <service>
  1139. <wsdl>http://www22.brinkster.com/horaciovallejo/netpress1.asmx?wsdl</wsdl>
  1140. <name>netpress1Test</name>
  1141. <serverType>Microsoft-IIS/6.0 # </serverType>
  1142. <protocols>
  1143. <protocol>Soap</protocol>
  1144. <protocol>HttpGet</protocol>
  1145. <protocol>HttpPost</protocol>
  1146. </protocols>
  1147. <clientTest>false</clientTest>
  1148. </service>
  1149. <service>
  1150. <wsdl>http://ws.acrosscommunications.com/NumPager.asmx?WSDL</wsdl>
  1151. <name>NumPagerTest</name>
  1152. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1153. <protocols>
  1154. <protocol>Soap</protocol>
  1155. </protocols>
  1156. <clientTest>false</clientTest>
  1157. </service>
  1158. <service>
  1159. <wsdl>http://ws.acrosscommunications.com/ICQ.asmx?WSDL</wsdl>
  1160. <name>ICQTest</name>
  1161. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1162. <protocols>
  1163. <protocol>Soap</protocol>
  1164. </protocols>
  1165. <clientTest>false</clientTest>
  1166. </service>
  1167. <service>
  1168. <wsdl>http://oneoutbox.com/wsdl/FaxService.wsdl</wsdl>
  1169. <name>FaxServiceTest</name>
  1170. <serverType>Apache/1.3.27 (Unix) PHP/4.2.3 FrontPage/5.0.2.2510 Rewrit/1.1a # </serverType>
  1171. <protocols>
  1172. <protocol>Soap</protocol>
  1173. </protocols>
  1174. <clientTest>false</clientTest>
  1175. </service>
  1176. <service>
  1177. <wsdl>http://www.cgi101.com/~msmithso/wsdl/mach.wsdl</wsdl>
  1178. <name>machTest</name>
  1179. <serverType>Apache/1.3.29 # </serverType>
  1180. <protocols>
  1181. <protocol>Soap</protocol>
  1182. </protocols>
  1183. <clientTest>false</clientTest>
  1184. </service>
  1185. <service>
  1186. <wsdl>http://otn.oracle.com/ws/otnnews?WSDL</wsdl>
  1187. <name>otnnewsTest</name>
  1188. <serverType>Oracle9iAS/9.0.4 Oracle HTTP Server # </serverType>
  1189. <protocols>
  1190. <protocol>Soap</protocol>
  1191. </protocols>
  1192. <clientTest>false</clientTest>
  1193. </service>
  1194. <service>
  1195. <wsdl>http://xml.nig.ac.jp/wsdl/GetEntry.wsdl</wsdl>
  1196. <name>GetEntryTest</name>
  1197. <serverType>GLUE/3.2.1,Apache Coyote/1.0 # </serverType>
  1198. <protocols>
  1199. <protocol>Soap</protocol>
  1200. </protocols>
  1201. <clientTest>false</clientTest>
  1202. </service>
  1203. <service>
  1204. <wsdl>http://www.webservicex.net/aba.asmx?WSDL</wsdl>
  1205. <name>abaTest</name>
  1206. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1207. <protocols>
  1208. <protocol>Soap</protocol>
  1209. <protocol>HttpGet</protocol>
  1210. <protocol>HttpPost</protocol>
  1211. </protocols>
  1212. <clientTest>false</clientTest>
  1213. </service>
  1214. <service>
  1215. <wsdl>http://www.infoaccelerator.net/cfc/rtf2html.cfc?WSDL</wsdl>
  1216. <name>rtf2htmlTest</name>
  1217. <serverType>Microsoft-IIS/5.0 # </serverType>
  1218. <protocols>
  1219. <protocol>Soap</protocol>
  1220. </protocols>
  1221. <clientTest>false</clientTest>
  1222. </service>
  1223. <service>
  1224. <wsdl>http://www.xeeinc.com/RateInformation/Rateinfo.asmx?WSDL</wsdl>
  1225. <name>RateinfoTest</name>
  1226. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1227. <protocols>
  1228. <protocol>Soap</protocol>
  1229. <protocol>HttpGet</protocol>
  1230. <protocol>HttpPost</protocol>
  1231. </protocols>
  1232. <clientTest>false</clientTest>
  1233. </service>
  1234. <service>
  1235. <wsdl>http://www.esynaps.com/WebServices/eSynapsFeed.asmx?WSDL</wsdl>
  1236. <name>eSynapsFeedTest</name>
  1237. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1238. <protocols>
  1239. <protocol>Soap</protocol>
  1240. </protocols>
  1241. <clientTest>false</clientTest>
  1242. </service>
  1243. <service>
  1244. <wsdl>http://www.webservicex.net/sendsmsworld.asmx?WSDL</wsdl>
  1245. <name>sendsmsworldTest</name>
  1246. <protocols>
  1247. <protocol>Soap</protocol>
  1248. <protocol>HttpGet</protocol>
  1249. <protocol>HttpPost</protocol>
  1250. </protocols>
  1251. <clientTest>false</clientTest>
  1252. </service>
  1253. <service>
  1254. <wsdl>http://xml.nig.ac.jp/wsdl/SRS.wsdl</wsdl>
  1255. <name>SRSTest</name>
  1256. <serverType>GLUE/3.2.1,Apache Coyote/1.0 # </serverType>
  1257. <protocols>
  1258. <protocol>Soap</protocol>
  1259. </protocols>
  1260. <clientTest>false</clientTest>
  1261. </service>
  1262. <service>
  1263. <wsdl>http://www28.brinkster.com/hegdes/NumberToWords.asmx?WSDL</wsdl>
  1264. <name>NumberToWordsTest</name>
  1265. <serverType>Microsoft-IIS/6.0 # </serverType>
  1266. <protocols>
  1267. <protocol>Soap</protocol>
  1268. </protocols>
  1269. <clientTest>false</clientTest>
  1270. </service>
  1271. <service>
  1272. <wsdl>http://www.richsolutions.com/richpayments/richpay.asmx?WSDL</wsdl>
  1273. <name>richpayTest</name>
  1274. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1275. <protocols>
  1276. <protocol>Soap</protocol>
  1277. <protocol>HttpGet</protocol>
  1278. <protocol>HttpPost</protocol>
  1279. </protocols>
  1280. <clientTest>false</clientTest>
  1281. </service>
  1282. <service>
  1283. <wsdl>http://server1.pointwsp.net/ws/postal/main.asmx?WSDL</wsdl>
  1284. <name>mainTest</name>
  1285. <serverType>Microsoft-IIS/5.0 # </serverType>
  1286. <protocols>
  1287. <protocol>Soap</protocol>
  1288. <protocol>HttpGet</protocol>
  1289. <protocol>HttpPost</protocol>
  1290. </protocols>
  1291. <clientTest>false</clientTest>
  1292. </service>
  1293. <service>
  1294. <wsdl>http://xmlrad.com/WSFindMP3Bin/WSFindMP3.dll/WSDL</wsdl>
  1295. <name>WSFindMP3Test</name>
  1296. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  1297. <protocols>
  1298. <protocol>Soap</protocol>
  1299. </protocols>
  1300. <clientTest>false</clientTest>
  1301. </service>
  1302. <service>
  1303. <wsdl>http://www.siliconllama.com/services/wsdl/ISOcodesService.wsdl</wsdl>
  1304. <name>ISOcodesServiceTest</name>
  1305. <protocols>
  1306. <protocol>Soap</protocol>
  1307. </protocols>
  1308. <clientTest>false</clientTest>
  1309. </service>
  1310. <service>
  1311. <wsdl>http://www.webserviceoftheday.com/ws/soap/wsotd.asmx?wsdl</wsdl>
  1312. <name>wsotdTest</name>
  1313. <serverType>Microsoft-IIS/5.0 # </serverType>
  1314. <protocols>
  1315. <protocol>Soap</protocol>
  1316. <protocol>HttpGet</protocol>
  1317. <protocol>HttpPost</protocol>
  1318. </protocols>
  1319. <clientTest>false</clientTest>
  1320. </service>
  1321. <service>
  1322. <wsdl>http://www.ripedev.com/webservices/LocalTime.asmx?WSDL</wsdl>
  1323. <name>LocalTimeTest</name>
  1324. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1325. <protocols>
  1326. <protocol>Soap</protocol>
  1327. </protocols>
  1328. <clientTest>false</clientTest>
  1329. </service>
  1330. <service>
  1331. <wsdl>http://majordojo.com/amazon_query/amazon_query.wsdl</wsdl>
  1332. <name>amazon_queryTest</name>
  1333. <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>
  1334. <protocols>
  1335. <protocol>Soap</protocol>
  1336. </protocols>
  1337. <clientTest>false</clientTest>
  1338. </service>
  1339. <service>
  1340. <wsdl>http://www.SoapClient.com/xml/SQLDataSoap.wsdl</wsdl>
  1341. <name>SQLDataSoapTest</name>
  1342. <serverType>SQLData Server/3.01 # </serverType>
  1343. <protocols>
  1344. <protocol>Soap</protocol>
  1345. </protocols>
  1346. <clientTest>false</clientTest>
  1347. </service>
  1348. <service>
  1349. <wsdl>http://soap.einsteinware.com/nascar/nascardataservice.asmx?WSDL</wsdl>
  1350. <name>nascardataserviceTest</name>
  1351. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  1352. <protocols>
  1353. <protocol>Soap</protocol>
  1354. <protocol>HttpPost</protocol>
  1355. </protocols>
  1356. <clientTest>false</clientTest>
  1357. </service>
  1358. <service>
  1359. <wsdl>http://wsdl.wsdlfeeds.com/spell.cfc?wsdl</wsdl>
  1360. <name>spellTest</name>
  1361. <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>
  1362. <protocols>
  1363. <protocol>Soap</protocol>
  1364. </protocols>
  1365. <clientTest>false</clientTest>
  1366. </service>
  1367. <service>
  1368. <wsdl>http://ws2.serviceobjects.net/av/AddressValidate.asmx?WSDL</wsdl>
  1369. <name>AddressValidateTest</name>
  1370. <serverType>Microsoft-IIS/5.0 # </serverType>
  1371. <protocols>
  1372. <protocol>Soap</protocol>
  1373. <protocol>HttpGet</protocol>
  1374. <protocol>HttpPost</protocol>
  1375. </protocols>
  1376. <clientTest>false</clientTest>
  1377. </service>
  1378. <service>
  1379. <wsdl>http://arcweb.esri.com/services/v2/RouteFinder.wsdl</wsdl>
  1380. <name>RouteFinderTest</name>
  1381. <serverType>Netscape-Enterprise/6.0 # </serverType>
  1382. <protocols>
  1383. <protocol>Soap</protocol>
  1384. </protocols>
  1385. <clientTest>false</clientTest>
  1386. </service>
  1387. <service>
  1388. <wsdl>http://arcweb.esri.com/services/v2/Query.wsdl</wsdl>
  1389. <name>QueryTest</name>
  1390. <serverType>Netscape-Enterprise/6.0 # </serverType>
  1391. <protocols>
  1392. <protocol>Soap</protocol>
  1393. </protocols>
  1394. <clientTest>false</clientTest>
  1395. </service>
  1396. <service>
  1397. <wsdl>http://www.webservicex.net/fax.asmx?wsdl</wsdl>
  1398. <name>faxTest</name>
  1399. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1400. <protocols>
  1401. <protocol>Soap</protocol>
  1402. <protocol>HttpGet</protocol>
  1403. <protocol>HttpPost</protocol>
  1404. </protocols>
  1405. <clientTest>false</clientTest>
  1406. </service>
  1407. <service>
  1408. <wsdl>http://ws2.serviceobjects.net/gpp/GeoPinPoint.asmx?WSDL</wsdl>
  1409. <name>GeoPinPointTest</name>
  1410. <serverType>Microsoft-IIS/5.0 # </serverType>
  1411. <protocols>
  1412. <protocol>Soap</protocol>
  1413. <protocol>HttpGet</protocol>
  1414. <protocol>HttpPost</protocol>
  1415. </protocols>
  1416. <clientTest>false</clientTest>
  1417. </service>
  1418. <service>
  1419. <wsdl>http://ws2.serviceobjects.net/gp/GeoPhone.asmx?WSDL</wsdl>
  1420. <name>GeoPhoneTest</name>
  1421. <protocols>
  1422. <protocol>Soap</protocol>
  1423. <protocol>HttpGet</protocol>
  1424. <protocol>HttpPost</protocol>
  1425. </protocols>
  1426. <clientTest>false</clientTest>
  1427. </service>
  1428. <service>
  1429. <wsdl>http://webservices.sld.cu/aldia.wsdl</wsdl>
  1430. <name>aldiaTest</name>
  1431. <serverType>Apache/1.3.27 (Unix) (Red-Hat/Linux) mod_ssl/2.8.12 OpenSSL/0.9.6b # </serverType>
  1432. <protocols>
  1433. <protocol>Soap</protocol>
  1434. </protocols>
  1435. <clientTest>false</clientTest>
  1436. </service>
  1437. <service>
  1438. <wsdl>http://www.inkostar.com/wsdl/iifws/iifws.wsdl</wsdl>
  1439. <name>iifwsTest</name>
  1440. <serverType>Microsoft-IIS/5.0 # </serverType>
  1441. <protocols>
  1442. <protocol>Soap</protocol>
  1443. </protocols>
  1444. <clientTest>false</clientTest>
  1445. </service>
  1446. <service>
  1447. <wsdl>http://www.nims.nl/soap/oms2.wsdl</wsdl>
  1448. <name>oms2Test</name>
  1449. <protocols>
  1450. <protocol>Soap</protocol>
  1451. </protocols>
  1452. <clientTest>false</clientTest>
  1453. </service>
  1454. <service>
  1455. <wsdl>http://www.lixusnet.com/lixusnet/AddFinder.jws?wsdl</wsdl>
  1456. <name>AddFinderTest</name>
  1457. <protocols>
  1458. <protocol>Soap</protocol>
  1459. </protocols>
  1460. <clientTest>false</clientTest>
  1461. </service>
  1462. <service>
  1463. <wsdl>http://www.xignite.com/xsimulation.asmx?WSDL</wsdl>
  1464. <name>xsimulationTest</name>
  1465. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1466. <protocols>
  1467. <protocol>Soap</protocol>
  1468. <protocol>HttpGet</protocol>
  1469. <protocol>HttpPost</protocol>
  1470. </protocols>
  1471. <clientTest>false</clientTest>
  1472. </service>
  1473. <service>
  1474. <wsdl>http://www.webservicex.net/uszip.asmx?WSDL</wsdl>
  1475. <name>uszipTest</name>
  1476. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1477. <protocols>
  1478. <protocol>Soap</protocol>
  1479. <protocol>HttpGet</protocol>
  1480. <protocol>HttpPost</protocol>
  1481. </protocols>
  1482. <clientTest>false</clientTest>
  1483. </service>
  1484. <service>
  1485. <wsdl>http://www.rightsecurity.biz/NRICWebServices/NRICWebServices.dll/wsdl/Iws_Verify_NRIC</wsdl>
  1486. <name>Iws_Verify_NRICTest</name>
  1487. <serverType>Netscape-Enterprise/3.5.1 # </serverType>
  1488. <protocols>
  1489. <protocol>Soap</protocol>
  1490. </protocols>
  1491. <clientTest>false</clientTest>
  1492. </service>
  1493. <service>
  1494. <wsdl>http://live.capescience.com/wsdl/GlobalWeather.wsdl</wsdl>
  1495. <name>GlobalWeatherTest</name>
  1496. <serverType> # </serverType>
  1497. <protocols>
  1498. <protocol>Soap</protocol>
  1499. </protocols>
  1500. <clientTest>false</clientTest>
  1501. </service>
  1502. <service>
  1503. <wsdl>http://www.barnaland.is/dev/sms.asmx?WSDL</wsdl>
  1504. <name>smsTest</name>
  1505. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1506. <protocols>
  1507. <protocol>Soap</protocol>
  1508. </protocols>
  1509. <clientTest>false</clientTest>
  1510. </service>
  1511. <service>
  1512. <wsdl>http://www.firelife.eu.com/dynamicflash/dynamicflash.asmx?WSDL</wsdl>
  1513. <name>dynamicflashTest</name>
  1514. <serverType>Microsoft-IIS/5.0 # </serverType>
  1515. <protocols>
  1516. <protocol>Soap</protocol>
  1517. </protocols>
  1518. <clientTest>false</clientTest>
  1519. </service>
  1520. <service>
  1521. <wsdl>http://www.e-naxos.com/scripts/enwscp.dll/wsdl/IODCODESPOSTAUX</wsdl>
  1522. <name>IODCODESPOSTAUXTest</name>
  1523. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1524. <protocols>
  1525. <protocol>Soap</protocol>
  1526. </protocols>
  1527. <clientTest>false</clientTest>
  1528. </service>
  1529. <service>
  1530. <wsdl>http://www.indobiz.com/OptionPricing.asmx?WSDL</wsdl>
  1531. <name>OptionPricingTest</name>
  1532. <serverType>Microsoft-IIS/5.0 # </serverType>
  1533. <protocols>
  1534. <protocol>Soap</protocol>
  1535. <protocol>HttpGet</protocol>
  1536. <protocol>HttpPost</protocol>
  1537. </protocols>
  1538. <clientTest>false</clientTest>
  1539. </service>
  1540. <service>
  1541. <wsdl>http://xmlrad.com/WSGeneratorBin/WSGenerator.dll/WSDL</wsdl>
  1542. <name>WSGeneratorTest</name>
  1543. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  1544. <protocols>
  1545. <protocol>Soap</protocol>
  1546. </protocols>
  1547. <clientTest>false</clientTest>
  1548. </service>
  1549. <service>
  1550. <wsdl>http://xml.nig.ac.jp/wsdl/Blast.wsdl</wsdl>
  1551. <name>BlastTest</name>
  1552. <serverType>GLUE/3.2.1,Apache Coyote/1.0 # </serverType>
  1553. <protocols>
  1554. <protocol>Soap</protocol>
  1555. </protocols>
  1556. <clientTest>false</clientTest>
  1557. </service>
  1558. <service>
  1559. <wsdl>http://xml.nig.ac.jp/wsdl/TxSearch.wsdl</wsdl>
  1560. <name>TxSearchTest</name>
  1561. <serverType>GLUE/3.2.1,Apache Coyote/1.0 # </serverType>
  1562. <protocols>
  1563. <protocol>Soap</protocol>
  1564. </protocols>
  1565. <clientTest>false</clientTest>
  1566. </service>
  1567. <service>
  1568. <wsdl>http://www.codebump.com/services/zipcodelookup.asmx?wsdl</wsdl>
  1569. <name>zipcodelookupTest</name>
  1570. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1571. <protocols>
  1572. <protocol>Soap</protocol>
  1573. <protocol>HttpGet</protocol>
  1574. <protocol>HttpPost</protocol>
  1575. </protocols>
  1576. <clientTest>false</clientTest>
  1577. </service>
  1578. <service>
  1579. <wsdl>http://www.esynaps.com/webservices/YourHostInfo.asmx?WSDL</wsdl>
  1580. <name>YourHostInfoTest</name>
  1581. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1582. <protocols>
  1583. <protocol>Soap</protocol>
  1584. </protocols>
  1585. <clientTest>false</clientTest>
  1586. </service>
  1587. <service>
  1588. <wsdl>http://www.oakleaf.ws/cfrtocws/cfrtocws.asmx?wsdl</wsdl>
  1589. <name>cfrtocwsTest</name>
  1590. <serverType>Microsoft-IIS/5.0 # </serverType>
  1591. <protocols>
  1592. <protocol>Soap</protocol>
  1593. <protocol>HttpGet</protocol>
  1594. <protocol>HttpPost</protocol>
  1595. </protocols>
  1596. <clientTest>false</clientTest>
  1597. </service>
  1598. <service>
  1599. <wsdl>http://www.baxglobal.com/xmltracking/xmltracking.asmx?wsdl</wsdl>
  1600. <name>xmltrackingTest</name>
  1601. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1602. <protocols>
  1603. <protocol>Soap</protocol>
  1604. <protocol>HttpGet</protocol>
  1605. <protocol>HttpPost</protocol>
  1606. </protocols>
  1607. <clientTest>false</clientTest>
  1608. </service>
  1609. <service>
  1610. <wsdl>http://webservices.isitedesign.com/ws/chartWS.cfc?wsdl</wsdl>
  1611. <name>chartWSTest</name>
  1612. <serverType>Microsoft-IIS/5.0 # </serverType>
  1613. <protocols>
  1614. <protocol>Soap</protocol>
  1615. </protocols>
  1616. <clientTest>false</clientTest>
  1617. </service>
  1618. <service>
  1619. <wsdl>http://ww6.borland.com/webservices/MapQuest/MapQuest.exe/wsdl/IMapQuest</wsdl>
  1620. <name>IMapQuestTest</name>
  1621. <serverType>Microsoft-IIS/4.0 # </serverType>
  1622. <protocols>
  1623. <protocol>Soap</protocol>
  1624. </protocols>
  1625. <clientTest>false</clientTest>
  1626. </service>
  1627. <service>
  1628. <wsdl>http://www.pinellus.com/cfc/Cod_fiscale.cfc?wsdl</wsdl>
  1629. <name>Cod_fiscaleTest</name>
  1630. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1631. <protocols>
  1632. <protocol>Soap</protocol>
  1633. </protocols>
  1634. <clientTest>false</clientTest>
  1635. </service>
  1636. <service>
  1637. <wsdl>http://www.stgregorioschurchdc.org/wsdl/Bible.wsdl</wsdl>
  1638. <name>BibleTest</name>
  1639. <serverType>Apache/1.3.27 (Unix) PHP/4.2.3 FrontPage/5.0.2.2510 Rewrit/1.1a # </serverType>
  1640. <protocols>
  1641. <protocol>Soap</protocol>
  1642. </protocols>
  1643. <clientTest>false</clientTest>
  1644. </service>
  1645. <service>
  1646. <wsdl>http://aspnet.lamaan.com/webservices/QuranVerse.asmx?WSDL</wsdl>
  1647. <name>QuranVerseTest</name>
  1648. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1649. <protocols>
  1650. <protocol>Soap</protocol>
  1651. </protocols>
  1652. <clientTest>false</clientTest>
  1653. </service>
  1654. <service>
  1655. <wsdl>http://www.danmarinescu.com/WebServices/ChessCGIServer.exe/wsdl/IBorlandChess</wsdl>
  1656. <name>IBorlandChessTest</name>
  1657. <protocols>
  1658. <protocol>Soap</protocol>
  1659. </protocols>
  1660. <clientTest>false</clientTest>
  1661. </service>
  1662. <service>
  1663. <wsdl>http://www.webservicex.net/EMBLNucleotideSequenceWebService.asmx?wsdl</wsdl>
  1664. <name>EMBLNucleotideSequenceWebServiceTest</name>
  1665. <protocols>
  1666. <protocol>Soap</protocol>
  1667. <protocol>HttpGet</protocol>
  1668. <protocol>HttpPost</protocol>
  1669. </protocols>
  1670. <clientTest>false</clientTest>
  1671. </service>
  1672. <service>
  1673. <wsdl>http://wavendon.dsdata.co.uk/axis/services/CarRentalQuotes?wsdl</wsdl>
  1674. <name>CarRentalQuotesTest</name>
  1675. <serverType>Apache/2.0.39 (Win32) mod_jk/1.2.0 # </serverType>
  1676. <protocols>
  1677. <protocol>Soap</protocol>
  1678. </protocols>
  1679. <clientTest>false</clientTest>
  1680. </service>
  1681. <service>
  1682. <wsdl>http://soap.systinet.net/demos/W3CSearch/wsdl</wsdl>
  1683. <name>W3CSearchTest</name>
  1684. <serverType>Systinet WASP Server for Java/4.6.1 (Java/1.4.2; Linux/2.4.20-24.7) # </serverType>
  1685. <protocols>
  1686. <protocol>Soap</protocol>
  1687. </protocols>
  1688. <clientTest>false</clientTest>
  1689. </service>
  1690. <service>
  1691. <wsdl>http://www.codecube.net/services/xreonline.asmx?WSDL</wsdl>
  1692. <name>xreonlineTest</name>
  1693. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1694. <protocols>
  1695. <protocol>Soap</protocol>
  1696. <protocol>HttpGet</protocol>
  1697. <protocol>HttpPost</protocol>
  1698. </protocols>
  1699. <clientTest>false</clientTest>
  1700. </service>
  1701. <service>
  1702. <wsdl>http://webservices.tei.or.th/getQuakeData.cfc?wsdl</wsdl>
  1703. <name>getQuakeDataTest</name>
  1704. <serverType>Microsoft-IIS/5.0 # </serverType>
  1705. <protocols>
  1706. <protocol>Soap</protocol>
  1707. </protocols>
  1708. <clientTest>false</clientTest>
  1709. </service>
  1710. <service>
  1711. <wsdl>http://wavendon.dsdata.co.uk:8080/axis/services/SBGGetAirFareQuote?wsdl</wsdl>
  1712. <name>SBGGetAirFareQuoteTest</name>
  1713. <serverType>Apache/2.0.39 (Win32) mod_jk/1.2.0 # </serverType>
  1714. <protocols>
  1715. <protocol>Soap</protocol>
  1716. </protocols>
  1717. <clientTest>false</clientTest>
  1718. </service>
  1719. <service>
  1720. <wsdl>http://ws.cdyne.com/whoisforip/queryip.asmx?wsdl</wsdl>
  1721. <name>queryipTest</name>
  1722. <protocols>
  1723. <protocol>Soap</protocol>
  1724. <protocol>HttpGet</protocol>
  1725. <protocol>HttpPost</protocol>
  1726. </protocols>
  1727. <clientTest>false</clientTest>
  1728. </service>
  1729. <service>
  1730. <wsdl>http://ws.acrosscommunications.com/SMS.asmx?WSDL</wsdl>
  1731. <name>SMSTest</name>
  1732. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1733. <protocols>
  1734. <protocol>Soap</protocol>
  1735. </protocols>
  1736. <clientTest>false</clientTest>
  1737. </service>
  1738. <service>
  1739. <wsdl>http://dotnet.cyberthink.net/computerdictionary/computerdictionary.asmx?wsdl</wsdl>
  1740. <name>computerdictionaryTest</name>
  1741. <serverType>Microsoft-IIS/5.0 # </serverType>
  1742. <protocols>
  1743. <protocol>Soap</protocol>
  1744. <protocol>HttpGet</protocol>
  1745. <protocol>HttpPost</protocol>
  1746. </protocols>
  1747. <clientTest>false</clientTest>
  1748. </service>
  1749. <service>
  1750. <wsdl>http://www.apniurdu.com/SOAP/Urdu2.wsdl</wsdl>
  1751. <name>Urdu2Test</name>
  1752. <serverType>Apache # </serverType>
  1753. <protocols>
  1754. <protocol>Soap</protocol>
  1755. </protocols>
  1756. <clientTest>false</clientTest>
  1757. </service>
  1758. <service>
  1759. <wsdl>http://www.webservicex.net/airport.asmx?wsdl</wsdl>
  1760. <name>airportTest</name>
  1761. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1762. <protocols>
  1763. <protocol>Soap</protocol>
  1764. <protocol>HttpGet</protocol>
  1765. <protocol>HttpPost</protocol>
  1766. </protocols>
  1767. <clientTest>false</clientTest>
  1768. </service>
  1769. <service>
  1770. <wsdl>http://telecommerce.danet.de/axis/services/DocConverterServicePort?wsdl</wsdl>
  1771. <name>DocConverterServicePortTest</name>
  1772. <serverType>Apache/1.3.26 (Linux/SuSE) mod_webapp/1.2.0-dev PHP/4.2.2 # </serverType>
  1773. <protocols>
  1774. <protocol>Soap</protocol>
  1775. </protocols>
  1776. <clientTest>false</clientTest>
  1777. </service>
  1778. <service>
  1779. <wsdl>http://www.xmlme.com/WSShakespeare.asmx?WSDL</wsdl>
  1780. <name>WSShakespeareTest</name>
  1781. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  1782. <protocols>
  1783. <protocol>Soap</protocol>
  1784. </protocols>
  1785. <clientTest>false</clientTest>
  1786. </service>
  1787. <service>
  1788. <wsdl>http://glkev.webs.innerhost.com/glkev_ws/WeatherFetcher.asmx?WSDL</wsdl>
  1789. <name>WeatherFetcherTest</name>
  1790. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1791. <protocols>
  1792. <protocol>Soap</protocol>
  1793. <protocol>HttpGet</protocol>
  1794. <protocol>HttpPost</protocol>
  1795. </protocols>
  1796. <clientTest>false</clientTest>
  1797. </service>
  1798. <service>
  1799. <wsdl>http://www.dl-me.com/webservices/unitext.asmx?wsdl</wsdl>
  1800. <name>unitextTest</name>
  1801. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1802. <protocols>
  1803. <protocol>Soap</protocol>
  1804. </protocols>
  1805. <clientTest>false</clientTest>
  1806. </service>
  1807. <service>
  1808. <wsdl>http://www.suiyi.com/soap/economic.dll/wsdl/Ieconomic</wsdl>
  1809. <name>IeconomicTest</name>
  1810. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  1811. <protocols>
  1812. <protocol>Soap</protocol>
  1813. </protocols>
  1814. <clientTest>false</clientTest>
  1815. </service>
  1816. <service>
  1817. <wsdl>http://webservices.isitedesign.com/ws/slashdotnews.cfc?wsdl</wsdl>
  1818. <name>slashdotnewsTest</name>
  1819. <serverType>Microsoft-IIS/5.0 # </serverType>
  1820. <protocols>
  1821. <protocol>Soap</protocol>
  1822. </protocols>
  1823. <clientTest>false</clientTest>
  1824. </service>
  1825. <service>
  1826. <wsdl>http://www.xignite.com/xretirement.asmx?WSDL</wsdl>
  1827. <name>xretirementTest</name>
  1828. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1829. <protocols>
  1830. <protocol>Soap</protocol>
  1831. <protocol>HttpGet</protocol>
  1832. <protocol>HttpPost</protocol>
  1833. </protocols>
  1834. <clientTest>false</clientTest>
  1835. </service>
  1836. <service>
  1837. <wsdl>http://ws2.serviceobjects.net/yp/YellowPages.asmx?WSDL</wsdl>
  1838. <name>YellowPagesTest</name>
  1839. <serverType>Microsoft-IIS/5.0 # </serverType>
  1840. <protocols>
  1841. <protocol>Soap</protocol>
  1842. <protocol>HttpGet</protocol>
  1843. <protocol>HttpPost</protocol>
  1844. </protocols>
  1845. <clientTest>false</clientTest>
  1846. </service>
  1847. <service>
  1848. <wsdl>http://www.securexml.net/securexml/securexml.wsdl</wsdl>
  1849. <name>securexmlTest</name>
  1850. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1851. <protocols>
  1852. <protocol>Soap</protocol>
  1853. </protocols>
  1854. <clientTest>false</clientTest>
  1855. </service>
  1856. <service>
  1857. <wsdl>http://soap.4s4c.com/weblogs/subscribe.wsdl</wsdl>
  1858. <name>subscribeTest</name>
  1859. <serverType>Microsoft-IIS/5.0 # </serverType>
  1860. <protocols>
  1861. <protocol>Soap</protocol>
  1862. </protocols>
  1863. <clientTest>false</clientTest>
  1864. </service>
  1865. <service>
  1866. <wsdl>http://www.schemaweb.info/webservices/soap/SchemaWebSoap.asmx?wsdl</wsdl>
  1867. <name>SchemaWebSoapTest</name>
  1868. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  1869. <protocols>
  1870. <protocol>Soap</protocol>
  1871. </protocols>
  1872. <clientTest>false</clientTest>
  1873. </service>
  1874. <service>
  1875. <wsdl>http://www.financialwebservices.ltd.uk/axis/services/bond?wsdl</wsdl>
  1876. <name>bondTest</name>
  1877. <serverType>Apache Tomcat/4.0.4 (HTTP/1.1 Connector) # </serverType>
  1878. <protocols>
  1879. <protocol>Soap</protocol>
  1880. </protocols>
  1881. <clientTest>false</clientTest>
  1882. </service>
  1883. <service>
  1884. <wsdl>http://www.xignite.com/xnews.asmx?WSDL</wsdl>
  1885. <name>xnewsTest</name>
  1886. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1887. <protocols>
  1888. <protocol>Soap</protocol>
  1889. <protocol>HttpGet</protocol>
  1890. <protocol>HttpPost</protocol>
  1891. </protocols>
  1892. <clientTest>false</clientTest>
  1893. </service>
  1894. <service>
  1895. <wsdl>http://www.what-is-around.com/awwia.wsdl</wsdl>
  1896. <name>awwiaTest</name>
  1897. <serverType>Apache/2.0.47 (Unix) mod_ssl/2.0.47 OpenSSL/0.9.7b # </serverType>
  1898. <protocols>
  1899. <protocol>Soap</protocol>
  1900. </protocols>
  1901. <clientTest>false</clientTest>
  1902. </service>
  1903. <service>
  1904. <wsdl>http://www.eyemaginations.com/cgi-bin/getWSDL.pl?wsdl=WebFunction.wsdl</wsdl>
  1905. <name>getWSDLTest</name>
  1906. <serverType>Apache/1.3.27 (Unix) FrontPage/5.0.2.2510 mod_ssl/2.8.12 OpenSSL/0.9.6g # </serverType>
  1907. <protocols>
  1908. <protocol>Soap</protocol>
  1909. </protocols>
  1910. <clientTest>false</clientTest>
  1911. </service>
  1912. <service>
  1913. <wsdl>http://www.flash-db.com/services/ws/companyInfo.wsdl</wsdl>
  1914. <name>companyInfoTest</name>
  1915. <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>
  1916. <protocols>
  1917. <protocol>Soap</protocol>
  1918. </protocols>
  1919. <clientTest>false</clientTest>
  1920. </service>
  1921. <service>
  1922. <wsdl>http://www.abundanttech.com/webservices/population/population.wsdl</wsdl>
  1923. <name>populationTest</name>
  1924. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1925. <protocols>
  1926. <protocol>Soap</protocol>
  1927. <protocol>HttpGet</protocol>
  1928. <protocol>HttpPost</protocol>
  1929. </protocols>
  1930. <clientTest>false</clientTest>
  1931. </service>
  1932. <service>
  1933. <wsdl>http://wsdl.wsdlfeeds.com/odp.cfc?wsdl</wsdl>
  1934. <name>odpTest</name>
  1935. <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>
  1936. <protocols>
  1937. <protocol>Soap</protocol>
  1938. </protocols>
  1939. <clientTest>false</clientTest>
  1940. </service>
  1941. <service>
  1942. <wsdl>http://www.xignite.com/xstatistics.asmx?WSDL</wsdl>
  1943. <name>xstatisticsTest</name>
  1944. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1945. <protocols>
  1946. <protocol>Soap</protocol>
  1947. <protocol>HttpGet</protocol>
  1948. <protocol>HttpPost</protocol>
  1949. </protocols>
  1950. <clientTest>false</clientTest>
  1951. </service>
  1952. <service>
  1953. <wsdl>http://www.nickhodge.com/nhodge/finnwords/finnwords.wsdl</wsdl>
  1954. <name>finnwordsTest</name>
  1955. <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>
  1956. <protocols>
  1957. <protocol>Soap</protocol>
  1958. </protocols>
  1959. <clientTest>false</clientTest>
  1960. </service>
  1961. <service>
  1962. <wsdl>http://terraservice.net/TerraService.asmx?WSDL</wsdl>
  1963. <name>TerraServiceTest</name>
  1964. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  1965. <protocols>
  1966. <protocol>Soap</protocol>
  1967. <protocol>HttpGet</protocol>
  1968. <protocol>HttpPost</protocol>
  1969. </protocols>
  1970. <clientTest>false</clientTest>
  1971. </service>
  1972. <service>
  1973. <wsdl>http://www.swanandmokashi.com/HomePage/WebServices/QuoteOfTheDay.asmx?WSDL</wsdl>
  1974. <name>QuoteOfTheDayTest</name>
  1975. <serverType>Microsoft-IIS/5.0 # </serverType>
  1976. <protocols>
  1977. <protocol>Soap</protocol>
  1978. <protocol>HttpGet</protocol>
  1979. <protocol>HttpPost</protocol>
  1980. </protocols>
  1981. <clientTest>false</clientTest>
  1982. </service>
  1983. <service>
  1984. <wsdl>http://test.mapfrepr.net/Encryption/Encryption.asmx?WSDL</wsdl>
  1985. <name>EncryptionTest</name>
  1986. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  1987. <protocols>
  1988. <protocol>Soap</protocol>
  1989. </protocols>
  1990. <clientTest>false</clientTest>
  1991. </service>
  1992. <service>
  1993. <wsdl>http://digilander.libero.it/mamo78/KRSS_DAML_Service.wsdl</wsdl>
  1994. <name>KRSS_DAML_ServiceTest</name>
  1995. <protocols>
  1996. <protocol>Soap</protocol>
  1997. </protocols>
  1998. <clientTest>false</clientTest>
  1999. </service>
  2000. <service>
  2001. <wsdl>http://glkev.webs.innerhost.com/glkev_ws/UPSTracking.asmx?WSDL</wsdl>
  2002. <name>UPSTrackingTest</name>
  2003. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2004. <protocols>
  2005. <protocol>Soap</protocol>
  2006. <protocol>HttpGet</protocol>
  2007. <protocol>HttpPost</protocol>
  2008. </protocols>
  2009. <clientTest>false</clientTest>
  2010. </service>
  2011. <service>
  2012. <wsdl>http://www.webservicex.net/hcpcs.asmx?WSDL</wsdl>
  2013. <name>hcpcsTest</name>
  2014. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2015. <protocols>
  2016. <protocol>Soap</protocol>
  2017. <protocol>HttpGet</protocol>
  2018. <protocol>HttpPost</protocol>
  2019. </protocols>
  2020. <clientTest>false</clientTest>
  2021. </service>
  2022. <service>
  2023. <wsdl>http://www.framewerks.com/WebServices/helpfulfunctions/helpfulfunctions.asmx?WSDL</wsdl>
  2024. <name>helpfulfunctionsTest</name>
  2025. <serverType>Microsoft-IIS/5.0 Geobytes-GeoSelect/2.1.0.1 # ASP.NET</serverType>
  2026. <protocols>
  2027. <protocol>Soap</protocol>
  2028. </protocols>
  2029. <clientTest>false</clientTest>
  2030. </service>
  2031. <service>
  2032. <wsdl>http://www.esynaps.com/WebServices/BusinessList.asmx?WSDL</wsdl>
  2033. <name>BusinessListTest</name>
  2034. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2035. <protocols>
  2036. <protocol>Soap</protocol>
  2037. </protocols>
  2038. <clientTest>false</clientTest>
  2039. </service>
  2040. <service>
  2041. <wsdl>http://webservices.wolfram.com/services/SearchServices/WolframSearch.wsdl</wsdl>
  2042. <name>WolframSearchTest</name>
  2043. <serverType>Apache Coyote/1.0 # </serverType>
  2044. <protocols>
  2045. <protocol>Soap</protocol>
  2046. </protocols>
  2047. <clientTest>false</clientTest>
  2048. </service>
  2049. <service>
  2050. <wsdl>http://webservices.matlus.com/scripts/emailwebservice.dll/wsdl/IEmailService</wsdl>
  2051. <name>IEmailServiceTest</name>
  2052. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  2053. <protocols>
  2054. <protocol>Soap</protocol>
  2055. </protocols>
  2056. <clientTest>false</clientTest>
  2057. </service>
  2058. <service>
  2059. <wsdl>http://www.seshakiran.com/QuoteService/QuotesService.asmx?wsdl</wsdl>
  2060. <name>QuotesServiceTest</name>
  2061. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2062. <protocols>
  2063. <protocol>Soap</protocol>
  2064. <protocol>HttpGet</protocol>
  2065. <protocol>HttpPost</protocol>
  2066. </protocols>
  2067. <clientTest>false</clientTest>
  2068. </service>
  2069. <service>
  2070. <wsdl>http://ws2.serviceobjects.net/pa/phoneappend.asmx?wsdl</wsdl>
  2071. <name>phoneappendTest</name>
  2072. <serverType>Microsoft-IIS/5.0 # </serverType>
  2073. <protocols>
  2074. <protocol>Soap</protocol>
  2075. <protocol>HttpGet</protocol>
  2076. <protocol>HttpPost</protocol>
  2077. </protocols>
  2078. <clientTest>false</clientTest>
  2079. </service>
  2080. <service>
  2081. <wsdl>http://www.webservicex.net/uklocation.asmx?WSDL</wsdl>
  2082. <name>uklocationTest</name>
  2083. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2084. <protocols>
  2085. <protocol>Soap</protocol>
  2086. <protocol>HttpGet</protocol>
  2087. <protocol>HttpPost</protocol>
  2088. </protocols>
  2089. <clientTest>false</clientTest>
  2090. </service>
  2091. <service>
  2092. <wsdl>http://www.webservicex.net/icd9drug.asmx?WSDL</wsdl>
  2093. <name>icd9drugTest</name>
  2094. <protocols>
  2095. <protocol>Soap</protocol>
  2096. <protocol>HttpGet</protocol>
  2097. <protocol>HttpPost</protocol>
  2098. </protocols>
  2099. <clientTest>false</clientTest>
  2100. </service>
  2101. <service>
  2102. <wsdl>http://docserv.aurigalogic.com/docserv.wsdl</wsdl>
  2103. <name>docservTest</name>
  2104. <serverType>Apache/1.3.27 (Unix) mod_jk2/2.0.3-dev mod_webapp/1.2.0-dev PHP/4.1.2 # </serverType>
  2105. <protocols>
  2106. <protocol>Soap</protocol>
  2107. </protocols>
  2108. <clientTest>false</clientTest>
  2109. </service>
  2110. <service>
  2111. <wsdl>http://www.barnaland.is/dev/phonebook.asmx?WSDL</wsdl>
  2112. <name>phonebookTest</name>
  2113. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2114. <protocols>
  2115. <protocol>Soap</protocol>
  2116. </protocols>
  2117. <clientTest>false</clientTest>
  2118. </service>
  2119. <service>
  2120. <wsdl>http://www.xmlme.com/WSSportingGoods.asmx?WSDL</wsdl>
  2121. <name>WSSportingGoodsTest</name>
  2122. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  2123. <protocols>
  2124. <protocol>Soap</protocol>
  2125. </protocols>
  2126. <clientTest>false</clientTest>
  2127. </service>
  2128. <service>
  2129. <wsdl>http://www.saintlogin.com/SAINT_WS/SAINTlogin_service_mssoap.php?wsdl</wsdl>
  2130. <name>SAINTlogin_service_mssoapTest</name>
  2131. <serverType>Apache/2.0.46 # </serverType>
  2132. <protocols>
  2133. <protocol>Soap</protocol>
  2134. </protocols>
  2135. <clientTest>false</clientTest>
  2136. </service>
  2137. <service>
  2138. <wsdl>http://www.wsindex.org/pages/wsindexLinks.wsdl</wsdl>
  2139. <name>wsindexLinksTest</name>
  2140. <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>
  2141. <protocols>
  2142. <protocol>Soap</protocol>
  2143. </protocols>
  2144. <clientTest>false</clientTest>
  2145. </service>
  2146. <service>
  2147. <wsdl>http://soap.einsteinware.com/email/emailservices.asmx?WSDL</wsdl>
  2148. <name>emailservicesTest</name>
  2149. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  2150. <protocols>
  2151. <protocol>Soap</protocol>
  2152. <protocol>HttpPost</protocol>
  2153. </protocols>
  2154. <clientTest>false</clientTest>
  2155. </service>
  2156. <service>
  2157. <wsdl>http://www.ejse.com/WeatherService/Service.asmx?WSDL</wsdl>
  2158. <name>ServiceTest</name>
  2159. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2160. <protocols>
  2161. <protocol>Soap</protocol>
  2162. <protocol>HttpGet</protocol>
  2163. <protocol>HttpPost</protocol>
  2164. </protocols>
  2165. <clientTest>false</clientTest>
  2166. </service>
  2167. <service>
  2168. <wsdl>http://www.indobiz.com/IndoEconoCator.asmx?WSDL</wsdl>
  2169. <name>IndoEconoCatorTest</name>
  2170. <serverType>Microsoft-IIS/5.0 # </serverType>
  2171. <protocols>
  2172. <protocol>Soap</protocol>
  2173. <protocol>HttpGet</protocol>
  2174. <protocol>HttpPost</protocol>
  2175. </protocols>
  2176. <clientTest>false</clientTest>
  2177. </service>
  2178. <service>
  2179. <wsdl>http://www.winisp.net/cheeso/zips/ZipService.asmx?WSDL</wsdl>
  2180. <name>ZipServiceTest</name>
  2181. <protocols>
  2182. <protocol>Soap</protocol>
  2183. <protocol>HttpGet</protocol>
  2184. <protocol>HttpPost</protocol>
  2185. </protocols>
  2186. <clientTest>false</clientTest>
  2187. </service>
  2188. <service>
  2189. <wsdl>http://www.abysal.com/soap/AbysalEmail.wsdl</wsdl>
  2190. <name>AbysalEmailTest</name>
  2191. <serverType>Abysal-webDTP/3.02 # </serverType>
  2192. <protocols>
  2193. <protocol>Soap</protocol>
  2194. </protocols>
  2195. <clientTest>false</clientTest>
  2196. </service>
  2197. <service>
  2198. <wsdl>http://ws2.serviceobjects.net/gc/GeoCash.asmx?WSDL</wsdl>
  2199. <name>GeoCashTest</name>
  2200. <protocols>
  2201. <protocol>Soap</protocol>
  2202. <protocol>HttpGet</protocol>
  2203. <protocol>HttpPost</protocol>
  2204. </protocols>
  2205. <clientTest>false</clientTest>
  2206. </service>
  2207. <service>
  2208. <wsdl>http://soap.systinet.net/demos/FreeDB/wsdl</wsdl>
  2209. <name>FreeDBTest</name>
  2210. <serverType>Systinet WASP Server for Java/4.6.1 (Java/1.4.2; Linux/2.4.20-24.7) # </serverType>
  2211. <protocols>
  2212. <protocol>Soap</protocol>
  2213. </protocols>
  2214. <clientTest>false</clientTest>
  2215. </service>
  2216. <service>
  2217. <wsdl>http://www.webservicex.net/FinanceService.asmx?WSDL</wsdl>
  2218. <name>FinanceServiceTest</name>
  2219. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2220. <protocols>
  2221. <protocol>Soap</protocol>
  2222. <protocol>HttpGet</protocol>
  2223. <protocol>HttpPost</protocol>
  2224. </protocols>
  2225. <clientTest>false</clientTest>
  2226. </service>
  2227. <service>
  2228. <wsdl>http://arcweb.esri.com/services/v2/PlaceFinderSample.wsdl</wsdl>
  2229. <name>PlaceFinderSampleTest</name>
  2230. <serverType>Netscape-Enterprise/6.0 # </serverType>
  2231. <protocols>
  2232. <protocol>Soap</protocol>
  2233. </protocols>
  2234. <clientTest>false</clientTest>
  2235. </service>
  2236. <service>
  2237. <wsdl>http://www.PerfectXML.NET/WebServices/SalesRankNPrice/BookService.asmx?WSDL</wsdl>
  2238. <name>BookServiceTest</name>
  2239. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  2240. <protocols>
  2241. <protocol>Soap</protocol>
  2242. <protocol>HttpGet</protocol>
  2243. <protocol>HttpPost</protocol>
  2244. </protocols>
  2245. <clientTest>false</clientTest>
  2246. </service>
  2247. <service>
  2248. <wsdl>http://ws.xara.com/graphicrender/render3d.wsdl</wsdl>
  2249. <name>render3dTest</name>
  2250. <serverType>Microsoft-IIS/5.0 # </serverType>
  2251. <protocols>
  2252. <protocol>Soap</protocol>
  2253. </protocols>
  2254. <clientTest>false</clientTest>
  2255. </service>
  2256. <service>
  2257. <wsdl>http://www.bitwaste.com/xmethods/ATTPager/ATTPager.wsdl</wsdl>
  2258. <name>ATTPagerTest</name>
  2259. <serverType>Apache/2.0.40 (Red Hat Linux) PHP/4.2.2 DAV/2 # </serverType>
  2260. <protocols>
  2261. <protocol>Soap</protocol>
  2262. </protocols>
  2263. <clientTest>false</clientTest>
  2264. </service>
  2265. <service>
  2266. <wsdl>http://webservices.empowered.com/statsws/stats.asmx?WSDL</wsdl>
  2267. <name>statsTest</name>
  2268. <protocols>
  2269. <protocol>Soap</protocol>
  2270. </protocols>
  2271. <clientTest>false</clientTest>
  2272. </service>
  2273. <service>
  2274. <wsdl>http://samples.bowstreet.com/bowstreet5/webengine/xmethods/gcd/Action!getWSDL</wsdl>
  2275. <name>ActiongetWSDLTest</name>
  2276. <protocols>
  2277. <protocol>Soap</protocol>
  2278. </protocols>
  2279. <clientTest>false</clientTest>
  2280. </service>
  2281. <service>
  2282. <wsdl>http://www.freshscore.com/service/FreshScoreLiveScores.asmx?WSDL</wsdl>
  2283. <name>FreshScoreLiveScoresTest</name>
  2284. <protocols>
  2285. <protocol>Soap</protocol>
  2286. <protocol>HttpGet</protocol>
  2287. <protocol>HttpPost</protocol>
  2288. </protocols>
  2289. <clientTest>false</clientTest>
  2290. </service>
  2291. <service>
  2292. <wsdl>http://www.berneda.com/scripts/TeeChartSOAP.exe/wsdl/ITeeChart</wsdl>
  2293. <name>ITeeChartTest</name>
  2294. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  2295. <protocols>
  2296. <protocol>Soap</protocol>
  2297. </protocols>
  2298. <clientTest>false</clientTest>
  2299. </service>
  2300. <service>
  2301. <wsdl>http://www.discoverdance.co.uk/zipQuery/zipCodeService.asmx?wsdl</wsdl>
  2302. <name>zipCodeServiceTest</name>
  2303. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2304. <protocols>
  2305. <protocol>Soap</protocol>
  2306. </protocols>
  2307. <clientTest>false</clientTest>
  2308. </service>
  2309. <service>
  2310. <wsdl>http://www.jusufdarmawan.com/wsprimegenerator.exe/wsdl/IPrimeGenerator</wsdl>
  2311. <name>IPrimeGeneratorTest</name>
  2312. <serverType>Microsoft-IIS/5.0 # </serverType>
  2313. <protocols>
  2314. <protocol>Soap</protocol>
  2315. </protocols>
  2316. <clientTest>false</clientTest>
  2317. </service>
  2318. <service>
  2319. <wsdl>http://www.xmethods.net/sd/2001/TemperatureService.wsdl</wsdl>
  2320. <name>TemperatureServiceTest</name>
  2321. <serverType>Enhydra-MultiServer/3.1.1b1 # </serverType>
  2322. <protocols>
  2323. <protocol>Soap</protocol>
  2324. </protocols>
  2325. <clientTest>false</clientTest>
  2326. </service>
  2327. <service>
  2328. <wsdl>http://www.xmethods.net/wsdl/query.wsdl</wsdl>
  2329. <name>queryTest</name>
  2330. <serverType>Apache/1.3.26 (Unix) Enhydra-Director/3 PHP/4.0.6 DAV/1.0.3 AuthNuSphere/1.0.0 # </serverType>
  2331. <protocols>
  2332. <protocol>Soap</protocol>
  2333. </protocols>
  2334. <clientTest>false</clientTest>
  2335. </service>
  2336. <service>
  2337. <wsdl>http://appserver.pepperzak.net/bankcode/BankCodeEJBHome/wsdl.jsp</wsdl>
  2338. <name>BankCodeEJBHomeTest</name>
  2339. <serverType>WebLogic WebLogic Server 6.1 SP1 09/18/2001 14:28:44 #138716 # </serverType>
  2340. <protocols>
  2341. <protocol>Soap</protocol>
  2342. </protocols>
  2343. <clientTest>false</clientTest>
  2344. </service>
  2345. <service>
  2346. <wsdl>http://ws2.serviceobjects.net/pt/PackTrack.asmx?WSDL</wsdl>
  2347. <name>PackTrackTest</name>
  2348. <serverType>Microsoft-IIS/5.0 # </serverType>
  2349. <protocols>
  2350. <protocol>Soap</protocol>
  2351. <protocol>HttpGet</protocol>
  2352. <protocol>HttpPost</protocol>
  2353. </protocols>
  2354. <clientTest>false</clientTest>
  2355. </service>
  2356. <service>
  2357. <wsdl>http://www.marotz.se/scripts/zipinfo.exe/wsdl/ISwedishZipInfo</wsdl>
  2358. <name>ISwedishZipInfoTest</name>
  2359. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2360. <protocols>
  2361. <protocol>Soap</protocol>
  2362. </protocols>
  2363. <clientTest>false</clientTest>
  2364. </service>
  2365. <service>
  2366. <wsdl>http://wavendon.dsdata.co.uk/axis/services/WhoisData?wsdl</wsdl>
  2367. <name>WhoisDataTest</name>
  2368. <serverType>Apache/2.0.39 (Win32) mod_jk/1.2.0 # </serverType>
  2369. <protocols>
  2370. <protocol>Soap</protocol>
  2371. </protocols>
  2372. <clientTest>false</clientTest>
  2373. </service>
  2374. <service>
  2375. <wsdl>http://www.xignite.com/xrealtime.asmx?WSDL</wsdl>
  2376. <name>xrealtimeTest</name>
  2377. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2378. <protocols>
  2379. <protocol>Soap</protocol>
  2380. <protocol>HttpGet</protocol>
  2381. <protocol>HttpPost</protocol>
  2382. </protocols>
  2383. <clientTest>false</clientTest>
  2384. </service>
  2385. <service>
  2386. <wsdl>http://www.extensio.com:8080/ExtensioInfoServer/mbsoap/MBWSSoapServices.wsdl</wsdl>
  2387. <name>MBWSSoapServicesTest</name>
  2388. <serverType>Apache/1.3.27 (Unix) mod_jk/1.1.0 # </serverType>
  2389. <protocols>
  2390. <protocol>Soap</protocol>
  2391. </protocols>
  2392. <clientTest>false</clientTest>
  2393. </service>
  2394. <service>
  2395. <wsdl>http://www.xignite.com/xSurvey.asmx?WSDL</wsdl>
  2396. <name>xSurveyTest</name>
  2397. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2398. <protocols>
  2399. <protocol>Soap</protocol>
  2400. <protocol>HttpGet</protocol>
  2401. <protocol>HttpPost</protocol>
  2402. </protocols>
  2403. <clientTest>false</clientTest>
  2404. </service>
  2405. <service>
  2406. <wsdl>http://www.abundanttech.com/webservices/deadoralive/deadoralive.wsdl</wsdl>
  2407. <name>deadoraliveTest</name>
  2408. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2409. <protocols>
  2410. <protocol>Soap</protocol>
  2411. <protocol>HttpGet</protocol>
  2412. <protocol>HttpPost</protocol>
  2413. </protocols>
  2414. <clientTest>false</clientTest>
  2415. </service>
  2416. <service>
  2417. <wsdl>http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl</wsdl>
  2418. <name>urnxmethodsdelayedquotesTest</name>
  2419. <protocols>
  2420. <protocol>Soap</protocol>
  2421. </protocols>
  2422. <clientTest>false</clientTest>
  2423. </service>
  2424. <service>
  2425. <wsdl>http://www.bindingpoint.com/ws/imalert/imalert.asmx?wsdl</wsdl>
  2426. <name>imalertTest</name>
  2427. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  2428. <protocols>
  2429. <protocol>Soap</protocol>
  2430. <protocol>HttpGet</protocol>
  2431. <protocol>HttpPost</protocol>
  2432. </protocols>
  2433. <clientTest>false</clientTest>
  2434. </service>
  2435. <service>
  2436. <wsdl>http://www.PerfectXML.net/WebServices/MusicTeachers/MusicTeachers.asmx?wsdl</wsdl>
  2437. <name>MusicTeachersTest</name>
  2438. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  2439. <protocols>
  2440. <protocol>Soap</protocol>
  2441. <protocol>HttpGet</protocol>
  2442. <protocol>HttpPost</protocol>
  2443. </protocols>
  2444. <clientTest>false</clientTest>
  2445. </service>
  2446. <service>
  2447. <wsdl>http://adrianr.dyndns.org/Fortune/Fortune.wsdl</wsdl>
  2448. <name>FortuneTest</name>
  2449. <protocols>
  2450. <protocol>Soap</protocol>
  2451. </protocols>
  2452. <clientTest>false</clientTest>
  2453. </service>
  2454. <service>
  2455. <wsdl>http://www.framewerks.com/WebServices/HTMLeMail/HTMLeMail.asmx?WSDL</wsdl>
  2456. <name>HTMLeMailTest</name>
  2457. <serverType>Microsoft-IIS/5.0 Geobytes-GeoSelect/2.1.0.1 # ASP.NET</serverType>
  2458. <protocols>
  2459. <protocol>Soap</protocol>
  2460. </protocols>
  2461. <clientTest>false</clientTest>
  2462. </service>
  2463. <service>
  2464. <wsdl>http://www.quisque.com/fr/techno/eqimage/eqimage.asmx?WSDL</wsdl>
  2465. <name>eqimageTest</name>
  2466. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2467. <protocols>
  2468. <protocol>Soap</protocol>
  2469. </protocols>
  2470. <clientTest>false</clientTest>
  2471. </service>
  2472. <service>
  2473. <wsdl>http://xml.nig.ac.jp/wsdl/Fasta.wsdl</wsdl>
  2474. <name>FastaTest</name>
  2475. <serverType>GLUE/3.2.1,Apache Coyote/1.0 # </serverType>
  2476. <protocols>
  2477. <protocol>Soap</protocol>
  2478. </protocols>
  2479. <clientTest>false</clientTest>
  2480. </service>
  2481. <service>
  2482. <wsdl>http://reto.checkit.ch/Scripts/Lotto.dll/wsdl/IgetNumbers</wsdl>
  2483. <name>IgetNumbersTest</name>
  2484. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  2485. <protocols>
  2486. <protocol>Soap</protocol>
  2487. </protocols>
  2488. <clientTest>false</clientTest>
  2489. </service>
  2490. <service>
  2491. <wsdl>http://www.webservicex.net/SendSMS.asmx?WSDL</wsdl>
  2492. <name>SendSMSTest</name>
  2493. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2494. <protocols>
  2495. <protocol>Soap</protocol>
  2496. <protocol>HttpGet</protocol>
  2497. <protocol>HttpPost</protocol>
  2498. </protocols>
  2499. <clientTest>false</clientTest>
  2500. </service>
  2501. <service>
  2502. <wsdl>http://wavendon.dsdata.co.uk/axis/services/SpamKiller?wsdl</wsdl>
  2503. <name>SpamKillerTest</name>
  2504. <serverType>Apache/2.0.39 (Win32) mod_jk/1.2.0 # </serverType>
  2505. <protocols>
  2506. <protocol>Soap</protocol>
  2507. </protocols>
  2508. <clientTest>false</clientTest>
  2509. </service>
  2510. <service>
  2511. <wsdl>http://webservices.imacination.com/distance/Distance.jws?wsdl</wsdl>
  2512. <name>DistanceTest</name>
  2513. <serverType>Resin/2.1.7 # </serverType>
  2514. <protocols>
  2515. <protocol>Soap</protocol>
  2516. </protocols>
  2517. <clientTest>false</clientTest>
  2518. </service>
  2519. <service>
  2520. <wsdl>http://www.barnaland.is/dev/personlookup.asmx?WSDL</wsdl>
  2521. <name>personlookupTest</name>
  2522. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2523. <protocols>
  2524. <protocol>Soap</protocol>
  2525. </protocols>
  2526. <clientTest>false</clientTest>
  2527. </service>
  2528. <service>
  2529. <wsdl>http://www.esynaps.com/WebServices/WhoIsService.asmx?WSDL</wsdl>
  2530. <name>WhoIsServiceTest</name>
  2531. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2532. <protocols>
  2533. <protocol>Soap</protocol>
  2534. </protocols>
  2535. <clientTest>false</clientTest>
  2536. </service>
  2537. <service>
  2538. <wsdl>http://www.xmethods.net/sd/2001/EBayWatcherService.wsdl</wsdl>
  2539. <name>EBayWatcherServiceTest</name>
  2540. <protocols>
  2541. <protocol>Soap</protocol>
  2542. </protocols>
  2543. <clientTest>false</clientTest>
  2544. </service>
  2545. <service>
  2546. <wsdl>http://api.google.com/GoogleSearch.wsdl</wsdl>
  2547. <name>GoogleSearchTest</name>
  2548. <serverType>GFE/1.3 # </serverType>
  2549. <protocols>
  2550. <protocol>Soap</protocol>
  2551. </protocols>
  2552. <clientTest>false</clientTest>
  2553. </service>
  2554. <service>
  2555. <wsdl>http://www.esynaps.com/webservices/codegenerator.asmx?WSDL</wsdl>
  2556. <name>codegeneratorTest</name>
  2557. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2558. <protocols>
  2559. <protocol>Soap</protocol>
  2560. </protocols>
  2561. <clientTest>false</clientTest>
  2562. </service>
  2563. <service>
  2564. <wsdl>http://www.flash-db.com/services/ws/barCodes.wsdl</wsdl>
  2565. <name>barCodesTest</name>
  2566. <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>
  2567. <protocols>
  2568. <protocol>Soap</protocol>
  2569. </protocols>
  2570. <clientTest>false</clientTest>
  2571. </service>
  2572. <service>
  2573. <wsdl>http://www.webservicex.net/RssToHTML.asmx?WSDL</wsdl>
  2574. <name>RssToHTMLTest</name>
  2575. <protocols>
  2576. <protocol>Soap</protocol>
  2577. <protocol>HttpGet</protocol>
  2578. <protocol>HttpPost</protocol>
  2579. </protocols>
  2580. <clientTest>false</clientTest>
  2581. </service>
  2582. <service>
  2583. <wsdl>http://server1.pointwsp.net/ws/finance/currency.asmx?WSDL</wsdl>
  2584. <name>currencyTest</name>
  2585. <serverType>Microsoft-IIS/5.0 # </serverType>
  2586. <protocols>
  2587. <protocol>Soap</protocol>
  2588. <protocol>HttpGet</protocol>
  2589. <protocol>HttpPost</protocol>
  2590. </protocols>
  2591. <clientTest>false</clientTest>
  2592. </service>
  2593. <service>
  2594. <wsdl>http://www.ebob42.com/cgi-bin/NumberToWordsInDutch.exe/wsdl/IDutch</wsdl>
  2595. <name>IDutchTest</name>
  2596. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2597. <protocols>
  2598. <protocol>Soap</protocol>
  2599. </protocols>
  2600. <clientTest>false</clientTest>
  2601. </service>
  2602. <service>
  2603. <wsdl>http://www.lixusnet.com/lixusnet/HPcatalog.jws?wsdl</wsdl>
  2604. <name>HPcatalogTest</name>
  2605. <serverType>NGASI Managed Hosting Application Server/2.0,Apache Tomcat/4.0 (HTTP/1.1 Connector) # </serverType>
  2606. <protocols>
  2607. <protocol>Soap</protocol>
  2608. </protocols>
  2609. <clientTest>false</clientTest>
  2610. </service>
  2611. <service>
  2612. <wsdl>http://www.oakleaf.ws/cfrsearchws/cfrsearchws.asmx?wsdl</wsdl>
  2613. <name>cfrsearchwsTest</name>
  2614. <serverType>Microsoft-IIS/5.0 # </serverType>
  2615. <protocols>
  2616. <protocol>Soap</protocol>
  2617. <protocol>HttpGet</protocol>
  2618. <protocol>HttpPost</protocol>
  2619. </protocols>
  2620. <clientTest>false</clientTest>
  2621. </service>
  2622. <service>
  2623. <wsdl>http://glkev.webs.innerhost.com/glkev_ws/StockServices.asmx?WSDL</wsdl>
  2624. <name>StockServicesTest</name>
  2625. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2626. <protocols>
  2627. <protocol>Soap</protocol>
  2628. <protocol>HttpGet</protocol>
  2629. <protocol>HttpPost</protocol>
  2630. </protocols>
  2631. <clientTest>false</clientTest>
  2632. </service>
  2633. <service>
  2634. <wsdl>http://ws.acrosscommunications.com/Fax.asmx?WSDL</wsdl>
  2635. <name>FaxTest</name>
  2636. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2637. <protocols>
  2638. <protocol>Soap</protocol>
  2639. </protocols>
  2640. <clientTest>false</clientTest>
  2641. </service>
  2642. <service>
  2643. <wsdl>http://www.dl-me.com/etoaservice/engtoarabic.asmx?WSDL</wsdl>
  2644. <name>engtoarabicTest</name>
  2645. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2646. <protocols>
  2647. <protocol>Soap</protocol>
  2648. </protocols>
  2649. <clientTest>false</clientTest>
  2650. </service>
  2651. <service>
  2652. <wsdl>http://www.webservicex.net/AustralianPostCode.asmx?WSDL</wsdl>
  2653. <name>AustralianPostCodeTest</name>
  2654. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2655. <protocols>
  2656. <protocol>Soap</protocol>
  2657. <protocol>HttpGet</protocol>
  2658. <protocol>HttpPost</protocol>
  2659. </protocols>
  2660. <clientTest>false</clientTest>
  2661. </service>
  2662. <service>
  2663. <wsdl>http://www.webservicex.net/country.asmx?wsdl</wsdl>
  2664. <name>countryTest</name>
  2665. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2666. <protocols>
  2667. <protocol>Soap</protocol>
  2668. <protocol>HttpGet</protocol>
  2669. <protocol>HttpPost</protocol>
  2670. </protocols>
  2671. <clientTest>false</clientTest>
  2672. </service>
  2673. <service>
  2674. <wsdl>http://www.esynaps.com/WebServices/SearchWS.asmx?WSDL</wsdl>
  2675. <name>SearchWSTest</name>
  2676. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2677. <protocols>
  2678. <protocol>Soap</protocol>
  2679. </protocols>
  2680. <clientTest>false</clientTest>
  2681. </service>
  2682. <service>
  2683. <wsdl>http://www.flash-db.com/services/ws/flashBarChart.wsdl</wsdl>
  2684. <name>flashBarChartTest</name>
  2685. <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>
  2686. <protocols>
  2687. <protocol>Soap</protocol>
  2688. </protocols>
  2689. <clientTest>false</clientTest>
  2690. </service>
  2691. <service>
  2692. <wsdl>http://ws.cdyne.com/SpellChecker/check.asmx?wsdl</wsdl>
  2693. <name>checkTest</name>
  2694. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  2695. <protocols>
  2696. <protocol>Soap</protocol>
  2697. <protocol>HttpGet</protocol>
  2698. <protocol>HttpPost</protocol>
  2699. </protocols>
  2700. <clientTest>false</clientTest>
  2701. </service>
  2702. <service>
  2703. <wsdl>http://www.xmethods.net/sd/2001/BabelFishService.wsdl</wsdl>
  2704. <name>BabelFishServiceTest</name>
  2705. <serverType>Apache/1.3.26 (Unix) Enhydra-Director/3 PHP/4.0.6 DAV/1.0.3 AuthNuSphere/1.0.0 # </serverType>
  2706. <protocols>
  2707. <protocol>Soap</protocol>
  2708. </protocols>
  2709. <clientTest>false</clientTest>
  2710. </service>
  2711. <service>
  2712. <wsdl>http://ws2.serviceobjects.net/sq/FastQuote.asmx?WSDL</wsdl>
  2713. <name>FastQuoteTest</name>
  2714. <serverType>Microsoft-IIS/5.0 # </serverType>
  2715. <protocols>
  2716. <protocol>Soap</protocol>
  2717. <protocol>HttpGet</protocol>
  2718. <protocol>HttpPost</protocol>
  2719. </protocols>
  2720. <clientTest>false</clientTest>
  2721. </service>
  2722. <service>
  2723. <wsdl>http://glkev.webs.innerhost.com/glkev_ws/Currencyws.asmx?WSDL</wsdl>
  2724. <name>CurrencywsTest</name>
  2725. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2726. <protocols>
  2727. <protocol>Soap</protocol>
  2728. <protocol>HttpGet</protocol>
  2729. <protocol>HttpPost</protocol>
  2730. </protocols>
  2731. <clientTest>false</clientTest>
  2732. </service>
  2733. <service>
  2734. <wsdl>http://www.swanandmokashi.com/HomePage/WebServices/Horoscope.asmx?WSDL</wsdl>
  2735. <name>HoroscopeTest</name>
  2736. <serverType>Microsoft-IIS/5.0 # </serverType>
  2737. <protocols>
  2738. <protocol>Soap</protocol>
  2739. <protocol>HttpGet</protocol>
  2740. <protocol>HttpPost</protocol>
  2741. </protocols>
  2742. <clientTest>false</clientTest>
  2743. </service>
  2744. <service>
  2745. <wsdl>http://www.webservicex.net/UDDIBusinessFinder.asmx?WSDL</wsdl>
  2746. <name>UDDIBusinessFinderTest</name>
  2747. <protocols>
  2748. <protocol>Soap</protocol>
  2749. <protocol>HttpGet</protocol>
  2750. <protocol>HttpPost</protocol>
  2751. </protocols>
  2752. <clientTest>false</clientTest>
  2753. </service>
  2754. <service>
  2755. <wsdl>http://ws2.serviceobjects.net/uspo/USPatentOffice.asmx?WSDL</wsdl>
  2756. <name>USPatentOfficeTest</name>
  2757. <serverType>Microsoft-IIS/5.0 # </serverType>
  2758. <protocols>
  2759. <protocol>Soap</protocol>
  2760. <protocol>HttpGet</protocol>
  2761. <protocol>HttpPost</protocol>
  2762. </protocols>
  2763. <clientTest>false</clientTest>
  2764. </service>
  2765. <service>
  2766. <wsdl>http://ws.cdyne.com/ziptogeo/zip2geo.asmx?wsdl</wsdl>
  2767. <name>zip2geoTest</name>
  2768. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  2769. <protocols>
  2770. <protocol>Soap</protocol>
  2771. <protocol>HttpGet</protocol>
  2772. <protocol>HttpPost</protocol>
  2773. </protocols>
  2774. <clientTest>false</clientTest>
  2775. </service>
  2776. <service>
  2777. <wsdl>http://www.webservicex.net/icd9.asmx?WSDL</wsdl>
  2778. <name>icd9Test</name>
  2779. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2780. <protocols>
  2781. <protocol>Soap</protocol>
  2782. <protocol>HttpGet</protocol>
  2783. <protocol>HttpPost</protocol>
  2784. </protocols>
  2785. <clientTest>false</clientTest>
  2786. </service>
  2787. <service>
  2788. <wsdl>http://www.xignite.com/xquotes.asmx?WSDL</wsdl>
  2789. <name>xquotesTest</name>
  2790. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2791. <protocols>
  2792. <protocol>Soap</protocol>
  2793. <protocol>HttpGet</protocol>
  2794. <protocol>HttpPost</protocol>
  2795. </protocols>
  2796. <clientTest>false</clientTest>
  2797. </service>
  2798. <service>
  2799. <wsdl>http://www.webservicex.net/BibleWebservice.asmx?wsdl</wsdl>
  2800. <name>BibleWebserviceTest</name>
  2801. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2802. <protocols>
  2803. <protocol>Soap</protocol>
  2804. <protocol>HttpGet</protocol>
  2805. <protocol>HttpPost</protocol>
  2806. </protocols>
  2807. <clientTest>false</clientTest>
  2808. </service>
  2809. <service>
  2810. <wsdl>http://ws.acrosscommunications.com/Phone.asmx?WSDL</wsdl>
  2811. <name>PhoneTest</name>
  2812. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2813. <protocols>
  2814. <protocol>Soap</protocol>
  2815. </protocols>
  2816. <clientTest>false</clientTest>
  2817. </service>
  2818. <service>
  2819. <wsdl>http://www.esynaps.com/WebServices/NFLNews.asmx?WSDL</wsdl>
  2820. <name>NFLNewsTest</name>
  2821. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2822. <protocols>
  2823. <protocol>Soap</protocol>
  2824. </protocols>
  2825. <clientTest>false</clientTest>
  2826. </service>
  2827. <service>
  2828. <wsdl>http://www.stgregorioschurchdc.org/wsdl/Calendar.wsdl</wsdl>
  2829. <name>CalendarTest</name>
  2830. <serverType>Apache/1.3.27 (Unix) PHP/4.2.3 FrontPage/5.0.2.2510 Rewrit/1.1a # </serverType>
  2831. <protocols>
  2832. <protocol>Soap</protocol>
  2833. </protocols>
  2834. <clientTest>false</clientTest>
  2835. </service>
  2836. <service>
  2837. <wsdl>http://www.xignite.com/xEdgar.asmx?WSDL</wsdl>
  2838. <name>xEdgarTest</name>
  2839. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2840. <protocols>
  2841. <protocol>Soap</protocol>
  2842. <protocol>HttpGet</protocol>
  2843. <protocol>HttpPost</protocol>
  2844. </protocols>
  2845. <clientTest>false</clientTest>
  2846. </service>
  2847. <service>
  2848. <wsdl>http://www.webservicex.net/globalweather.asmx?WSDL</wsdl>
  2849. <name>globalweatherTest</name>
  2850. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2851. <protocols>
  2852. <protocol>Soap</protocol>
  2853. <protocol>HttpGet</protocol>
  2854. <protocol>HttpPost</protocol>
  2855. </protocols>
  2856. <clientTest>false</clientTest>
  2857. </service>
  2858. <service>
  2859. <wsdl>http://www.abundanttech.com/webservices/bnprice/bnprice.wsdl</wsdl>
  2860. <name>bnpriceTest</name>
  2861. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2862. <protocols>
  2863. <protocol>Soap</protocol>
  2864. <protocol>HttpGet</protocol>
  2865. <protocol>HttpPost</protocol>
  2866. </protocols>
  2867. <clientTest>false</clientTest>
  2868. </service>
  2869. <service>
  2870. <wsdl>http://ws2.serviceobjects.net/upc/UPC.asmx?WSDL</wsdl>
  2871. <name>UPCTest</name>
  2872. <serverType>Microsoft-IIS/5.0 # </serverType>
  2873. <protocols>
  2874. <protocol>Soap</protocol>
  2875. <protocol>HttpGet</protocol>
  2876. <protocol>HttpPost</protocol>
  2877. </protocols>
  2878. <clientTest>false</clientTest>
  2879. </service>
  2880. <service>
  2881. <wsdl>http://www.bitounis.com/IBAN/IBANFuncs.asmx?WSDL</wsdl>
  2882. <name>IBANFuncsTest</name>
  2883. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2884. <protocols>
  2885. <protocol>Soap</protocol>
  2886. <protocol>HttpGet</protocol>
  2887. <protocol>HttpPost</protocol>
  2888. </protocols>
  2889. <clientTest>false</clientTest>
  2890. </service>
  2891. <service>
  2892. <wsdl>http://www.winisp.net/cheeso/books/books.asmx?WSDL</wsdl>
  2893. <name>booksTest</name>
  2894. <protocols>
  2895. <protocol>Soap</protocol>
  2896. <protocol>HttpGet</protocol>
  2897. <protocol>HttpPost</protocol>
  2898. </protocols>
  2899. <clientTest>false</clientTest>
  2900. </service>
  2901. <service>
  2902. <wsdl>http://ws2.serviceobjects.net/ev/EmailValidate.asmx?WSDL</wsdl>
  2903. <name>EmailValidateTest</name>
  2904. <serverType>Microsoft-IIS/5.0 # </serverType>
  2905. <protocols>
  2906. <protocol>Soap</protocol>
  2907. <protocol>HttpGet</protocol>
  2908. <protocol>HttpPost</protocol>
  2909. </protocols>
  2910. <clientTest>false</clientTest>
  2911. </service>
  2912. <service>
  2913. <wsdl>http://www.webservicex.net/ValidateEmail.asmx?WSDL</wsdl>
  2914. <name>ValidateEmailTest</name>
  2915. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  2916. <protocols>
  2917. <protocol>Soap</protocol>
  2918. <protocol>HttpGet</protocol>
  2919. <protocol>HttpPost</protocol>
  2920. </protocols>
  2921. <clientTest>false</clientTest>
  2922. </service>
  2923. <service>
  2924. <wsdl>http://www.xmethods.net/sd/2001/XMethodsFilesystemService.wsdl</wsdl>
  2925. <name>XMethodsFilesystemServiceTest</name>
  2926. <protocols>
  2927. <protocol>Soap</protocol>
  2928. </protocols>
  2929. <clientTest>false</clientTest>
  2930. </service>
  2931. <service>
  2932. <wsdl>http://ws2.serviceobjects.net/whi/WhoIs.asmx?WSDL</wsdl>
  2933. <name>WhoIsTest</name>
  2934. <serverType>Microsoft-IIS/5.0 # </serverType>
  2935. <protocols>
  2936. <protocol>Soap</protocol>
  2937. <protocol>HttpGet</protocol>
  2938. <protocol>HttpPost</protocol>
  2939. </protocols>
  2940. <clientTest>false</clientTest>
  2941. </service>
  2942. <service>
  2943. <wsdl>http://arcweb.esri.com/services/v2/MapImage.wsdl</wsdl>
  2944. <name>MapImageTest</name>
  2945. <serverType>Netscape-Enterprise/6.0 # </serverType>
  2946. <protocols>
  2947. <protocol>Soap</protocol>
  2948. </protocols>
  2949. <clientTest>false</clientTest>
  2950. </service>
  2951. <service>
  2952. <wsdl>http://xml.nig.ac.jp/wsdl/DDBJ.wsdl</wsdl>
  2953. <name>DDBJTest</name>
  2954. <serverType>GLUE/3.2.1,Apache Coyote/1.0 # </serverType>
  2955. <protocols>
  2956. <protocol>Soap</protocol>
  2957. </protocols>
  2958. <clientTest>false</clientTest>
  2959. </service>
  2960. <service>
  2961. <wsdl>http://urljr.com/soap</wsdl>
  2962. <name>urljrTest</name>
  2963. <serverType>Apache/2.0.44 (Win32) DAV/2 mod_ssl/2.0.43 OpenSSL/0.9.6g PHP/4.3.3 # </serverType>
  2964. <protocols>
  2965. <protocol>Soap</protocol>
  2966. </protocols>
  2967. <clientTest>false</clientTest>
  2968. </service>
  2969. <service>
  2970. <wsdl>http://localhost:8080/ConvDocEncBar.asmx?wsdl</wsdl>
  2971. <name>ConvDocEncBarTest</name>
  2972. <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
  2973. <protocols>
  2974. <protocol>Soap</protocol>
  2975. <protocol>HttpGet</protocol>
  2976. <protocol>HttpPost</protocol>
  2977. </protocols>
  2978. <clientTest>true</clientTest>
  2979. </service>
  2980. <service>
  2981. <wsdl>http://localhost:8080/ConvDocLitWra.asmx?wsdl</wsdl>
  2982. <name>ConvDocLitWraTest</name>
  2983. <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
  2984. <protocols>
  2985. <protocol>Soap</protocol>
  2986. <protocol>HttpGet</protocol>
  2987. <protocol>HttpPost</protocol>
  2988. </protocols>
  2989. <clientTest>true</clientTest>
  2990. </service>
  2991. <service>
  2992. <wsdl>http://localhost:8080/ConvDocLitBar.asmx?wsdl</wsdl>
  2993. <name>ConvDocLitBarTest</name>
  2994. <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
  2995. <protocols>
  2996. <protocol>Soap</protocol>
  2997. <protocol>HttpGet</protocol>
  2998. <protocol>HttpPost</protocol>
  2999. </protocols>
  3000. <clientTest>true</clientTest>
  3001. </service>
  3002. <service>
  3003. <wsdl>http://localhost:8080/ConvRpc.asmx?wsdl</wsdl>
  3004. <name>ConvRpcTest</name>
  3005. <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
  3006. <protocols>
  3007. <protocol>Soap</protocol>
  3008. <protocol>HttpGet</protocol>
  3009. <protocol>HttpPost</protocol>
  3010. </protocols>
  3011. <clientTest>true</clientTest>
  3012. </service>
  3013. <service>
  3014. <wsdl>http://localhost:8080/ConvDocEncWra.asmx?wsdl</wsdl>
  3015. <name>ConvDocEncWraTest</name>
  3016. <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
  3017. <protocols>
  3018. <protocol>Soap</protocol>
  3019. <protocol>HttpGet</protocol>
  3020. <protocol>HttpPost</protocol>
  3021. </protocols>
  3022. <clientTest>true</clientTest>
  3023. </service>
  3024. <service>
  3025. <wsdl>http://www.abctext.com/webservices/SMS.asmx?WSDL</wsdl>
  3026. <name>SMSTest2</name>
  3027. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  3028. <protocols>
  3029. <protocol>Soap</protocol>
  3030. </protocols>
  3031. <clientTest>false</clientTest>
  3032. </service>
  3033. <service>
  3034. <wsdl>http://www.barnaland.is/dev/names.asmx?WSDL</wsdl>
  3035. <name>namesTest</name>
  3036. <protocols>
  3037. <protocol>Soap</protocol>
  3038. </protocols>
  3039. <clientTest>false</clientTest>
  3040. </service>
  3041. <service>
  3042. <wsdl>http://www.webservicex.net/isbn.asmx?WSDL</wsdl>
  3043. <name>isbnTest</name>
  3044. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3045. <protocols>
  3046. <protocol>Soap</protocol>
  3047. <protocol>HttpGet</protocol>
  3048. <protocol>HttpPost</protocol>
  3049. </protocols>
  3050. <clientTest>false</clientTest>
  3051. </service>
  3052. <service>
  3053. <wsdl>http://www.verbix.com/cgi-bin/soapx.exe/wsdl/IGetInflection</wsdl>
  3054. <name>IGetInflectionTest</name>
  3055. <serverType>Microsoft-IIS/5.0 # </serverType>
  3056. <protocols>
  3057. <protocol>Soap</protocol>
  3058. </protocols>
  3059. <clientTest>false</clientTest>
  3060. </service>
  3061. <service>
  3062. <wsdl>http://www.culand.net/WebServices/bin/WSMaze_Server.dll/wsdl/IWSMazeServer</wsdl>
  3063. <name>IWSMazeServerTest</name>
  3064. <serverType>Microsoft-IIS/5.1 # ASP.NET</serverType>
  3065. <protocols>
  3066. <protocol>Soap</protocol>
  3067. </protocols>
  3068. <clientTest>false</clientTest>
  3069. </service>
  3070. <service>
  3071. <wsdl>http://63.138.157.107/av/wsdl/ITAddressValidations</wsdl>
  3072. <name>ITAddressValidationsTest</name>
  3073. <serverType>Apache/1.3.28 (Win32) PHP/4.3.3 # </serverType>
  3074. <protocols>
  3075. <protocol>Soap</protocol>
  3076. </protocols>
  3077. <clientTest>false</clientTest>
  3078. </service>
  3079. <service>
  3080. <wsdl>http://www.quisque.com/fr/chasses/blasons/search.asmx?WSDL</wsdl>
  3081. <name>searchTest</name>
  3082. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3083. <protocols>
  3084. <protocol>Soap</protocol>
  3085. </protocols>
  3086. <clientTest>false</clientTest>
  3087. </service>
  3088. <service>
  3089. <wsdl>http://survey.rila.net/SurveyService/SurveyService.asmx?wsdl</wsdl>
  3090. <name>SurveyServiceTest</name>
  3091. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3092. <protocols>
  3093. <protocol>Soap</protocol>
  3094. </protocols>
  3095. <clientTest>false</clientTest>
  3096. </service>
  3097. <service>
  3098. <wsdl>http://greg.froh.ca/fun/random_bushism/soap/?wsdl</wsdl>
  3099. <name>Test</name>
  3100. <serverType>Apache/1.3.29 (Unix) PHP/4.3.3 # PHP/4.3.3</serverType>
  3101. <protocols>
  3102. <protocol>Soap</protocol>
  3103. </protocols>
  3104. <clientTest>false</clientTest>
  3105. </service>
  3106. <service>
  3107. <wsdl>http://lokeuei.malaysiandevelopers.net/magnum4d/results.asmx?WSDL</wsdl>
  3108. <name>resultsTest</name>
  3109. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3110. <protocols>
  3111. <protocol>Soap</protocol>
  3112. </protocols>
  3113. <clientTest>false</clientTest>
  3114. </service>
  3115. <service>
  3116. <wsdl>http://www.geomonster.com/GeoServe.asmx?WSDL</wsdl>
  3117. <name>GeoServeTest</name>
  3118. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3119. <protocols>
  3120. <protocol>Soap</protocol>
  3121. <protocol>HttpGet</protocol>
  3122. <protocol>HttpPost</protocol>
  3123. </protocols>
  3124. <clientTest>false</clientTest>
  3125. </service>
  3126. <service>
  3127. <wsdl>http://nagraj.hopto.org/axis/services/ZenQuoteService?wsdl</wsdl>
  3128. <name>ZenQuoteServiceTest</name>
  3129. <serverType>Apache-Coyote/1.1 # </serverType>
  3130. <protocols>
  3131. <protocol>Soap</protocol>
  3132. </protocols>
  3133. <clientTest>false</clientTest>
  3134. </service>
  3135. <service>
  3136. <wsdl>http://www.ghettodriveby.com/soap/?wsdl</wsdl>
  3137. <name>Test2</name>
  3138. <serverType>Apache/1.3.29 (Unix) PHP/4.3.3 # PHP/4.3.3</serverType>
  3139. <protocols>
  3140. <protocol>Soap</protocol>
  3141. </protocols>
  3142. <clientTest>false</clientTest>
  3143. </service>
  3144. <service>
  3145. <wsdl>http://ocean.cse.ucsc.edu/soap/getCAWeather.wsdl</wsdl>
  3146. <name>getCAWeatherTest</name>
  3147. <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>
  3148. <protocols>
  3149. <protocol>Soap</protocol>
  3150. </protocols>
  3151. <clientTest>false</clientTest>
  3152. </service>
  3153. <service>
  3154. <wsdl>http://www.xignite.com/xInsider.asmx?WSDL</wsdl>
  3155. <name>xInsiderTest</name>
  3156. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3157. <protocols>
  3158. <protocol>Soap</protocol>
  3159. <protocol>HttpGet</protocol>
  3160. <protocol>HttpPost</protocol>
  3161. </protocols>
  3162. <clientTest>false</clientTest>
  3163. </service>
  3164. <service>
  3165. <wsdl>http://webservices.geomonster.com/GeoServe.asmx?wsdl</wsdl>
  3166. <name>GeoServeTest2</name>
  3167. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3168. <protocols>
  3169. <protocol>Soap</protocol>
  3170. <protocol>HttpGet</protocol>
  3171. <protocol>HttpPost</protocol>
  3172. </protocols>
  3173. <clientTest>false</clientTest>
  3174. </service>
  3175. <service>
  3176. <wsdl>http://localhost:8080/TestBinding1.asmx?wsdl</wsdl>
  3177. <name>TestBinding1Test</name>
  3178. <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
  3179. <protocols>
  3180. <protocol>Soap</protocol>
  3181. <protocol>HttpGet</protocol>
  3182. <protocol>HttpPost</protocol>
  3183. </protocols>
  3184. <clientTest>false</clientTest>
  3185. </service>
  3186. <service>
  3187. <wsdl>http://localhost:8080/TestBinding2.asmx?wsdl</wsdl>
  3188. <name>TestBinding2Test</name>
  3189. <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
  3190. <protocols>
  3191. <protocol>Soap</protocol>
  3192. <protocol>HttpGet</protocol>
  3193. <protocol>HttpPost</protocol>
  3194. </protocols>
  3195. <clientTest>false</clientTest>
  3196. </service>
  3197. <service>
  3198. <wsdl>http://localhost:8080/TestBinding4.asmx?wsdl</wsdl>
  3199. <name>TestBinding4Test</name>
  3200. <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
  3201. <protocols>
  3202. <protocol>Soap</protocol>
  3203. <protocol>HttpGet</protocol>
  3204. <protocol>HttpPost</protocol>
  3205. </protocols>
  3206. <clientTest>true</clientTest>
  3207. </service>
  3208. <service>
  3209. <wsdl>http://localhost:8080/TestBinding3.asmx?wsdl</wsdl>
  3210. <name>TestBinding3Test</name>
  3211. <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
  3212. <protocols>
  3213. <protocol>Soap</protocol>
  3214. <protocol>HttpGet</protocol>
  3215. <protocol>HttpPost</protocol>
  3216. </protocols>
  3217. <clientTest>false</clientTest>
  3218. </service>
  3219. <service>
  3220. <wsdl>http://localhost:8080/TestBinding5.asmx?wsdl</wsdl>
  3221. <name>TestBinding5Test</name>
  3222. <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
  3223. <protocols>
  3224. <protocol>Soap</protocol>
  3225. <protocol>HttpGet</protocol>
  3226. <protocol>HttpPost</protocol>
  3227. </protocols>
  3228. <clientTest>false</clientTest>
  3229. </service>
  3230. <service>
  3231. <wsdl>http://paracite.ecs.soton.ac.uk/paracite.wsdl</wsdl>
  3232. <name>paraciteTest</name>
  3233. <clientTest>false</clientTest>
  3234. </service>
  3235. <service>
  3236. <wsdl>http://sms.smspoint.net:8080/special/services/Sms?wsdl</wsdl>
  3237. <name>SmsTest</name>
  3238. <serverType>Apache Coyote/1.0 # </serverType>
  3239. <protocols>
  3240. <protocol>Soap</protocol>
  3241. </protocols>
  3242. <clientTest>false</clientTest>
  3243. </service>
  3244. <service>
  3245. <wsdl>http://webservices.instantlogic.com/zipcodes.ils?wsdl</wsdl>
  3246. <name>zipcodesTest</name>
  3247. <clientTest>false</clientTest>
  3248. </service>
  3249. <service>
  3250. <wsdl>http://www.boyzoid.com/threat.cfc?wsdl</wsdl>
  3251. <name>threatTest</name>
  3252. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  3253. <protocols>
  3254. <protocol>Soap</protocol>
  3255. </protocols>
  3256. <clientTest>false</clientTest>
  3257. </service>
  3258. <service>
  3259. <wsdl>http://localhost:8080/Test1.asmx?wsdl</wsdl>
  3260. <name>Test1Test</name>
  3261. <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
  3262. <protocols>
  3263. <protocol>Soap</protocol>
  3264. <protocol>HttpGet</protocol>
  3265. <protocol>HttpPost</protocol>
  3266. </protocols>
  3267. <clientTest>false</clientTest>
  3268. </service>
  3269. <service>
  3270. <wsdl>http://localhost:8080/TestBinding6.asmx?wsdl</wsdl>
  3271. <name>TestBinding6Test</name>
  3272. <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
  3273. <protocols>
  3274. <protocol>Soap</protocol>
  3275. <protocol>HttpGet</protocol>
  3276. <protocol>HttpPost</protocol>
  3277. </protocols>
  3278. <clientTest>false</clientTest>
  3279. </service>
  3280. <service>
  3281. <wsdl>http://localhost:8080/Test2.asmx?wsdl</wsdl>
  3282. <name>Test2Test</name>
  3283. <serverType>Mono-XSP Server/0.6.99.0 128 # Mono</serverType>
  3284. <protocols>
  3285. <protocol>Soap</protocol>
  3286. </protocols>
  3287. <clientTest>false</clientTest>
  3288. </service>
  3289. <service>
  3290. <wsdl>http://www.rzg.mpg.de/~michel/SOPCWeb.wsdl</wsdl>
  3291. <name>SOPCWebTest</name>
  3292. <protocols>
  3293. <protocol>Soap</protocol>
  3294. </protocols>
  3295. <clientTest>false</clientTest>
  3296. </service>
  3297. <service>
  3298. <wsdl>http://helena.europe.webmatrixhosting.net/Morse.asmx?WSDL</wsdl>
  3299. <name>MorseTest</name>
  3300. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  3301. <protocols>
  3302. <protocol>Soap</protocol>
  3303. </protocols>
  3304. <clientTest>false</clientTest>
  3305. </service>
  3306. <service>
  3307. <wsdl>http://iis1.grantparksoftware.com:8080/gps/gps.asmx?WSDL</wsdl>
  3308. <name>gpsTest</name>
  3309. <protocols>
  3310. <protocol>Soap</protocol>
  3311. <protocol>HttpGet</protocol>
  3312. <protocol>HttpPost</protocol>
  3313. </protocols>
  3314. <clientTest>false</clientTest>
  3315. </service>
  3316. <service>
  3317. <wsdl>http://isnpx1158.in2p3.fr:8180/axis/services/AMIWebService?wsdl</wsdl>
  3318. <name>AMIWebServiceTest</name>
  3319. <serverType>Apache-Coyote/1.1 # </serverType>
  3320. <protocols>
  3321. <protocol>Soap</protocol>
  3322. </protocols>
  3323. <clientTest>false</clientTest>
  3324. </service>
  3325. <service>
  3326. <wsdl>http://www.dotnetclipper.com/clip.asmx?WSDL</wsdl>
  3327. <name>clipTest</name>
  3328. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  3329. <protocols>
  3330. <protocol>Soap</protocol>
  3331. <protocol>HttpGet</protocol>
  3332. <protocol>HttpPost</protocol>
  3333. </protocols>
  3334. <clientTest>false</clientTest>
  3335. </service>
  3336. <service>
  3337. <wsdl>http://66.165.154.102/aba.asmx?WSDL</wsdl>
  3338. <name>abaTest2</name>
  3339. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3340. <protocols>
  3341. <protocol>Soap</protocol>
  3342. <protocol>HttpGet</protocol>
  3343. <protocol>HttpPost</protocol>
  3344. </protocols>
  3345. <clientTest>false</clientTest>
  3346. </service>
  3347. <service>
  3348. <wsdl>http://www.newcomer.de/WebServices/Lohn.dll/wsdl/ILohn2004</wsdl>
  3349. <name>ILohn2004Test</name>
  3350. <serverType>Microsoft-IIS/6.0 # </serverType>
  3351. <protocols>
  3352. <protocol>Soap</protocol>
  3353. </protocols>
  3354. <clientTest>false</clientTest>
  3355. </service>
  3356. <service>
  3357. <wsdl>http://66.165.154.102/fax.asmx?wsdl</wsdl>
  3358. <name>faxTest2</name>
  3359. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3360. <protocols>
  3361. <protocol>Soap</protocol>
  3362. <protocol>HttpGet</protocol>
  3363. <protocol>HttpPost</protocol>
  3364. </protocols>
  3365. <clientTest>false</clientTest>
  3366. </service>
  3367. <service>
  3368. <wsdl>http://66.165.154.102/RssToHTML.asmx?WSDL</wsdl>
  3369. <name>RssToHTMLTest2</name>
  3370. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3371. <protocols>
  3372. <protocol>Soap</protocol>
  3373. <protocol>HttpGet</protocol>
  3374. <protocol>HttpPost</protocol>
  3375. </protocols>
  3376. <clientTest>false</clientTest>
  3377. </service>
  3378. <service>
  3379. <wsdl>http://66.165.154.102/BibleWebservice.asmx?wsdl</wsdl>
  3380. <name>BibleWebserviceTest2</name>
  3381. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3382. <protocols>
  3383. <protocol>Soap</protocol>
  3384. <protocol>HttpGet</protocol>
  3385. <protocol>HttpPost</protocol>
  3386. </protocols>
  3387. <clientTest>false</clientTest>
  3388. </service>
  3389. <service>
  3390. <wsdl>http://66.165.154.102/ValidateEmail.asmx?WSDL</wsdl>
  3391. <name>ValidateEmailTest2</name>
  3392. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3393. <protocols>
  3394. <protocol>Soap</protocol>
  3395. <protocol>HttpGet</protocol>
  3396. <protocol>HttpPost</protocol>
  3397. </protocols>
  3398. <clientTest>false</clientTest>
  3399. </service>
  3400. <service>
  3401. <wsdl>http://66.165.154.102/icd9toicd10.asmx?WSDL</wsdl>
  3402. <name>icd9toicd10Test2</name>
  3403. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3404. <protocols>
  3405. <protocol>Soap</protocol>
  3406. <protocol>HttpGet</protocol>
  3407. <protocol>HttpPost</protocol>
  3408. </protocols>
  3409. <clientTest>false</clientTest>
  3410. </service>
  3411. <service>
  3412. <wsdl>http://66.165.154.102/stockquote.asmx?WSDL</wsdl>
  3413. <name>stockquoteTest2</name>
  3414. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3415. <protocols>
  3416. <protocol>Soap</protocol>
  3417. <protocol>HttpGet</protocol>
  3418. <protocol>HttpPost</protocol>
  3419. </protocols>
  3420. <clientTest>false</clientTest>
  3421. </service>
  3422. <service>
  3423. <wsdl>http://66.165.154.102/icd9.asmx?WSDL</wsdl>
  3424. <name>icd9Test2</name>
  3425. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3426. <protocols>
  3427. <protocol>Soap</protocol>
  3428. <protocol>HttpGet</protocol>
  3429. <protocol>HttpPost</protocol>
  3430. </protocols>
  3431. <clientTest>false</clientTest>
  3432. </service>
  3433. <service>
  3434. <wsdl>http://66.165.154.102/hcpcs.asmx?WSDL</wsdl>
  3435. <name>hcpcsTest2</name>
  3436. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3437. <protocols>
  3438. <protocol>Soap</protocol>
  3439. <protocol>HttpGet</protocol>
  3440. <protocol>HttpPost</protocol>
  3441. </protocols>
  3442. <clientTest>false</clientTest>
  3443. </service>
  3444. <service>
  3445. <wsdl>http://66.165.154.102/country.asmx?wsdl</wsdl>
  3446. <name>countryTest2</name>
  3447. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3448. <protocols>
  3449. <protocol>Soap</protocol>
  3450. <protocol>HttpGet</protocol>
  3451. <protocol>HttpPost</protocol>
  3452. </protocols>
  3453. <clientTest>false</clientTest>
  3454. </service>
  3455. <service>
  3456. <wsdl>http://66.165.154.102/barcode.asmx?WSDL</wsdl>
  3457. <name>barcodeTest2</name>
  3458. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3459. <protocols>
  3460. <protocol>Soap</protocol>
  3461. <protocol>HttpGet</protocol>
  3462. <protocol>HttpPost</protocol>
  3463. </protocols>
  3464. <clientTest>false</clientTest>
  3465. </service>
  3466. <service>
  3467. <wsdl>http://66.165.154.102/isbn.asmx?WSDL</wsdl>
  3468. <name>isbnTest2</name>
  3469. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3470. <protocols>
  3471. <protocol>Soap</protocol>
  3472. <protocol>HttpGet</protocol>
  3473. <protocol>HttpPost</protocol>
  3474. </protocols>
  3475. <clientTest>false</clientTest>
  3476. </service>
  3477. <service>
  3478. <wsdl>http://66.165.154.102/icd9drug.asmx?WSDL</wsdl>
  3479. <name>icd9drugTest2</name>
  3480. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3481. <protocols>
  3482. <protocol>Soap</protocol>
  3483. <protocol>HttpGet</protocol>
  3484. <protocol>HttpPost</protocol>
  3485. </protocols>
  3486. <clientTest>false</clientTest>
  3487. </service>
  3488. <service>
  3489. <wsdl>http://66.165.154.102/AustralianPostCode.asmx?WSDL</wsdl>
  3490. <name>AustralianPostCodeTest2</name>
  3491. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3492. <protocols>
  3493. <protocol>Soap</protocol>
  3494. <protocol>HttpGet</protocol>
  3495. <protocol>HttpPost</protocol>
  3496. </protocols>
  3497. <clientTest>false</clientTest>
  3498. </service>
  3499. <service>
  3500. <wsdl>http://66.165.154.102/usweather.asmx?WSDL</wsdl>
  3501. <name>usweatherTest2</name>
  3502. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3503. <protocols>
  3504. <protocol>Soap</protocol>
  3505. <protocol>HttpGet</protocol>
  3506. <protocol>HttpPost</protocol>
  3507. </protocols>
  3508. <clientTest>false</clientTest>
  3509. </service>
  3510. <service>
  3511. <wsdl>http://66.165.154.102/CurrencyConvertor.asmx?wsdl</wsdl>
  3512. <name>CurrencyConvertorTest2</name>
  3513. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3514. <protocols>
  3515. <protocol>Soap</protocol>
  3516. <protocol>HttpGet</protocol>
  3517. <protocol>HttpPost</protocol>
  3518. </protocols>
  3519. <clientTest>false</clientTest>
  3520. </service>
  3521. <service>
  3522. <wsdl>http://66.165.154.102/airport.asmx?wsdl</wsdl>
  3523. <name>airportTest2</name>
  3524. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3525. <protocols>
  3526. <protocol>Soap</protocol>
  3527. <protocol>HttpGet</protocol>
  3528. <protocol>HttpPost</protocol>
  3529. </protocols>
  3530. <clientTest>false</clientTest>
  3531. </service>
  3532. <service>
  3533. <wsdl>http://66.165.154.102/uszip.asmx?WSDL</wsdl>
  3534. <name>uszipTest2</name>
  3535. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3536. <protocols>
  3537. <protocol>Soap</protocol>
  3538. <protocol>HttpGet</protocol>
  3539. <protocol>HttpPost</protocol>
  3540. </protocols>
  3541. <clientTest>false</clientTest>
  3542. </service>
  3543. <service>
  3544. <wsdl>http://66.165.154.102/icd10.asmx?WSDL</wsdl>
  3545. <name>icd10Test2</name>
  3546. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3547. <protocols>
  3548. <protocol>Soap</protocol>
  3549. <protocol>HttpGet</protocol>
  3550. <protocol>HttpPost</protocol>
  3551. </protocols>
  3552. <clientTest>false</clientTest>
  3553. </service>
  3554. <service>
  3555. <wsdl>http://66.165.154.102/NAICS.asmx?wsdl</wsdl>
  3556. <name>NAICSTest2</name>
  3557. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3558. <protocols>
  3559. <protocol>Soap</protocol>
  3560. <protocol>HttpGet</protocol>
  3561. <protocol>HttpPost</protocol>
  3562. </protocols>
  3563. <clientTest>false</clientTest>
  3564. </service>
  3565. <service>
  3566. <wsdl>http://66.165.154.102/SendSMS.asmx?WSDL</wsdl>
  3567. <name>SendSMSTest2</name>
  3568. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3569. <protocols>
  3570. <protocol>Soap</protocol>
  3571. <protocol>HttpGet</protocol>
  3572. <protocol>HttpPost</protocol>
  3573. </protocols>
  3574. <clientTest>false</clientTest>
  3575. </service>
  3576. <service>
  3577. <wsdl>http://66.165.154.102/UDDIBusinessFinder.asmx?WSDL</wsdl>
  3578. <name>UDDIBusinessFinderTest2</name>
  3579. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3580. <protocols>
  3581. <protocol>Soap</protocol>
  3582. <protocol>HttpGet</protocol>
  3583. <protocol>HttpPost</protocol>
  3584. </protocols>
  3585. <clientTest>false</clientTest>
  3586. </service>
  3587. <service>
  3588. <wsdl>http://66.165.154.102/FinanceService.asmx?WSDL</wsdl>
  3589. <name>FinanceServiceTest2</name>
  3590. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3591. <protocols>
  3592. <protocol>Soap</protocol>
  3593. <protocol>HttpGet</protocol>
  3594. <protocol>HttpPost</protocol>
  3595. </protocols>
  3596. <clientTest>false</clientTest>
  3597. </service>
  3598. <service>
  3599. <wsdl>http://66.165.154.102/sendsmsworld.asmx?WSDL</wsdl>
  3600. <name>sendsmsworldTest2</name>
  3601. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3602. <protocols>
  3603. <protocol>Soap</protocol>
  3604. <protocol>HttpGet</protocol>
  3605. <protocol>HttpPost</protocol>
  3606. </protocols>
  3607. <clientTest>false</clientTest>
  3608. </service>
  3609. <service>
  3610. <wsdl>http://api.ecommstats.com/services/statService.wsdl</wsdl>
  3611. <name>statServiceTest</name>
  3612. <serverType>TME-GLUE/5.0,Apache-Coyote/1.1 # </serverType>
  3613. <protocols>
  3614. <protocol>Soap</protocol>
  3615. </protocols>
  3616. <clientTest>false</clientTest>
  3617. </service>
  3618. <service>
  3619. <wsdl>http://66.165.154.102/EMBLNucleotideSequenceWebService.asmx?wsdl</wsdl>
  3620. <name>EMBLNucleotideSequenceWebServiceTest2</name>
  3621. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3622. <protocols>
  3623. <protocol>Soap</protocol>
  3624. <protocol>HttpGet</protocol>
  3625. <protocol>HttpPost</protocol>
  3626. </protocols>
  3627. <clientTest>false</clientTest>
  3628. </service>
  3629. <service>
  3630. <wsdl>http://66.165.154.102/uklocation.asmx?WSDL</wsdl>
  3631. <name>uklocationTest2</name>
  3632. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3633. <protocols>
  3634. <protocol>Soap</protocol>
  3635. <protocol>HttpGet</protocol>
  3636. <protocol>HttpPost</protocol>
  3637. </protocols>
  3638. <clientTest>false</clientTest>
  3639. </service>
  3640. <service>
  3641. <wsdl>http://66.165.154.102/periodictable.asmx?wsdl</wsdl>
  3642. <name>periodictableTest2</name>
  3643. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3644. <protocols>
  3645. <protocol>Soap</protocol>
  3646. <protocol>HttpGet</protocol>
  3647. <protocol>HttpPost</protocol>
  3648. </protocols>
  3649. <clientTest>false</clientTest>
  3650. </service>
  3651. <service>
  3652. <wsdl>http://66.165.154.102/globalweather.asmx?WSDL</wsdl>
  3653. <name>globalweatherTest2</name>
  3654. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3655. <protocols>
  3656. <protocol>Soap</protocol>
  3657. <protocol>HttpGet</protocol>
  3658. <protocol>HttpPost</protocol>
  3659. </protocols>
  3660. <clientTest>false</clientTest>
  3661. </service>
  3662. <service>
  3663. <wsdl>http://localhost:8080/IncludeTest.asmx?wsdl</wsdl>
  3664. <name>IncludeTestTest</name>
  3665. <serverType>Mono-XSP Server/0.9.99.0 128 # Mono</serverType>
  3666. <protocols>
  3667. <protocol>Soap</protocol>
  3668. <protocol>HttpGet</protocol>
  3669. <protocol>HttpPost</protocol>
  3670. </protocols>
  3671. <clientTest>true</clientTest>
  3672. </service>
  3673. <service>
  3674. <wsdl>http://www.webservicex.com/EMBLNucleotideSequenceWebService.asmx?wsdl</wsdl>
  3675. <name>EMBLNucleotideSequenceWebServiceTest3</name>
  3676. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3677. <protocols>
  3678. <protocol>Soap</protocol>
  3679. <protocol>HttpGet</protocol>
  3680. <protocol>HttpPost</protocol>
  3681. </protocols>
  3682. <clientTest>false</clientTest>
  3683. </service>
  3684. <service>
  3685. <wsdl>http://www.webservicex.com/icd10.asmx?WSDL</wsdl>
  3686. <name>icd10Test3</name>
  3687. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3688. <protocols>
  3689. <protocol>Soap</protocol>
  3690. <protocol>HttpGet</protocol>
  3691. <protocol>HttpPost</protocol>
  3692. </protocols>
  3693. <clientTest>false</clientTest>
  3694. </service>
  3695. <service>
  3696. <wsdl>http://www.webservicex.com/hcpcs.asmx?WSDL</wsdl>
  3697. <name>hcpcsTest3</name>
  3698. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3699. <protocols>
  3700. <protocol>Soap</protocol>
  3701. <protocol>HttpGet</protocol>
  3702. <protocol>HttpPost</protocol>
  3703. </protocols>
  3704. <clientTest>false</clientTest>
  3705. </service>
  3706. <service>
  3707. <wsdl>http://www.webservicex.com/isbn.asmx?WSDL</wsdl>
  3708. <name>isbnTest3</name>
  3709. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3710. <protocols>
  3711. <protocol>Soap</protocol>
  3712. <protocol>HttpGet</protocol>
  3713. <protocol>HttpPost</protocol>
  3714. </protocols>
  3715. <clientTest>false</clientTest>
  3716. </service>
  3717. <service>
  3718. <wsdl>http://www.webservicex.com/AustralianPostCode.asmx?WSDL</wsdl>
  3719. <name>AustralianPostCodeTest3</name>
  3720. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3721. <protocols>
  3722. <protocol>Soap</protocol>
  3723. <protocol>HttpGet</protocol>
  3724. <protocol>HttpPost</protocol>
  3725. </protocols>
  3726. <clientTest>false</clientTest>
  3727. </service>
  3728. <service>
  3729. <wsdl>http://www.webservicex.com/fax.asmx?wsdl</wsdl>
  3730. <name>faxTest3</name>
  3731. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3732. <protocols>
  3733. <protocol>Soap</protocol>
  3734. <protocol>HttpGet</protocol>
  3735. <protocol>HttpPost</protocol>
  3736. </protocols>
  3737. <clientTest>false</clientTest>
  3738. </service>
  3739. <service>
  3740. <wsdl>http://www.webservicex.com/aba.asmx?WSDL</wsdl>
  3741. <name>abaTest3</name>
  3742. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3743. <protocols>
  3744. <protocol>Soap</protocol>
  3745. <protocol>HttpGet</protocol>
  3746. <protocol>HttpPost</protocol>
  3747. </protocols>
  3748. <clientTest>false</clientTest>
  3749. </service>
  3750. <service>
  3751. <wsdl>http://www.webservicex.com/globalweather.asmx?WSDL</wsdl>
  3752. <name>globalweatherTest3</name>
  3753. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3754. <protocols>
  3755. <protocol>Soap</protocol>
  3756. <protocol>HttpGet</protocol>
  3757. <protocol>HttpPost</protocol>
  3758. </protocols>
  3759. <clientTest>false</clientTest>
  3760. </service>
  3761. <service>
  3762. <wsdl>http://www.webservicex.com/UDDIBusinessFinder.asmx?WSDL</wsdl>
  3763. <name>UDDIBusinessFinderTest3</name>
  3764. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3765. <protocols>
  3766. <protocol>Soap</protocol>
  3767. <protocol>HttpGet</protocol>
  3768. <protocol>HttpPost</protocol>
  3769. </protocols>
  3770. <clientTest>false</clientTest>
  3771. </service>
  3772. <service>
  3773. <wsdl>http://www.webservicex.com/CurrencyConvertor.asmx?wsdl</wsdl>
  3774. <name>CurrencyConvertorTest3</name>
  3775. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3776. <protocols>
  3777. <protocol>Soap</protocol>
  3778. <protocol>HttpGet</protocol>
  3779. <protocol>HttpPost</protocol>
  3780. </protocols>
  3781. <clientTest>false</clientTest>
  3782. </service>
  3783. <service>
  3784. <wsdl>http://www.webservicex.com/NAICS.asmx?wsdl</wsdl>
  3785. <name>NAICSTest3</name>
  3786. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3787. <protocols>
  3788. <protocol>Soap</protocol>
  3789. <protocol>HttpGet</protocol>
  3790. <protocol>HttpPost</protocol>
  3791. </protocols>
  3792. <clientTest>false</clientTest>
  3793. </service>
  3794. <service>
  3795. <wsdl>http://www.webservicex.com/BibleWebservice.asmx?wsdl</wsdl>
  3796. <name>BibleWebserviceTest3</name>
  3797. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3798. <protocols>
  3799. <protocol>Soap</protocol>
  3800. <protocol>HttpGet</protocol>
  3801. <protocol>HttpPost</protocol>
  3802. </protocols>
  3803. <clientTest>false</clientTest>
  3804. </service>
  3805. <service>
  3806. <wsdl>http://www.webservicex.com/ValidateEmail.asmx?WSDL</wsdl>
  3807. <name>ValidateEmailTest3</name>
  3808. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3809. <protocols>
  3810. <protocol>Soap</protocol>
  3811. <protocol>HttpGet</protocol>
  3812. <protocol>HttpPost</protocol>
  3813. </protocols>
  3814. <clientTest>false</clientTest>
  3815. </service>
  3816. <service>
  3817. <wsdl>http://www.webservicex.com/uklocation.asmx?WSDL</wsdl>
  3818. <name>uklocationTest3</name>
  3819. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3820. <protocols>
  3821. <protocol>Soap</protocol>
  3822. <protocol>HttpGet</protocol>
  3823. <protocol>HttpPost</protocol>
  3824. </protocols>
  3825. <clientTest>false</clientTest>
  3826. </service>
  3827. <service>
  3828. <wsdl>http://www.webservicex.com/stockquote.asmx?WSDL</wsdl>
  3829. <name>stockquoteTest3</name>
  3830. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3831. <protocols>
  3832. <protocol>Soap</protocol>
  3833. <protocol>HttpGet</protocol>
  3834. <protocol>HttpPost</protocol>
  3835. </protocols>
  3836. <clientTest>false</clientTest>
  3837. </service>
  3838. <service>
  3839. <wsdl>http://www.webservicex.com/usweather.asmx?WSDL</wsdl>
  3840. <name>usweatherTest3</name>
  3841. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3842. <protocols>
  3843. <protocol>Soap</protocol>
  3844. <protocol>HttpGet</protocol>
  3845. <protocol>HttpPost</protocol>
  3846. </protocols>
  3847. <clientTest>false</clientTest>
  3848. </service>
  3849. <service>
  3850. <wsdl>http://www.webservicex.com/icd9drug.asmx?WSDL</wsdl>
  3851. <name>icd9drugTest3</name>
  3852. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3853. <protocols>
  3854. <protocol>Soap</protocol>
  3855. <protocol>HttpGet</protocol>
  3856. <protocol>HttpPost</protocol>
  3857. </protocols>
  3858. <clientTest>false</clientTest>
  3859. </service>
  3860. <service>
  3861. <wsdl>http://www.webservicex.com/periodictable.asmx?wsdl</wsdl>
  3862. <name>periodictableTest3</name>
  3863. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3864. <protocols>
  3865. <protocol>Soap</protocol>
  3866. <protocol>HttpGet</protocol>
  3867. <protocol>HttpPost</protocol>
  3868. </protocols>
  3869. <clientTest>false</clientTest>
  3870. </service>
  3871. <service>
  3872. <wsdl>http://www.webservicex.com/uszip.asmx?WSDL</wsdl>
  3873. <name>uszipTest3</name>
  3874. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3875. <protocols>
  3876. <protocol>Soap</protocol>
  3877. <protocol>HttpGet</protocol>
  3878. <protocol>HttpPost</protocol>
  3879. </protocols>
  3880. <clientTest>false</clientTest>
  3881. </service>
  3882. <service>
  3883. <wsdl>http://www.webservicex.com/SendSMS.asmx?WSDL</wsdl>
  3884. <name>SendSMSTest3</name>
  3885. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3886. <protocols>
  3887. <protocol>Soap</protocol>
  3888. <protocol>HttpGet</protocol>
  3889. <protocol>HttpPost</protocol>
  3890. </protocols>
  3891. <clientTest>false</clientTest>
  3892. </service>
  3893. <service>
  3894. <wsdl>http://www.webservicex.com/airport.asmx?wsdl</wsdl>
  3895. <name>airportTest3</name>
  3896. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3897. <protocols>
  3898. <protocol>Soap</protocol>
  3899. <protocol>HttpGet</protocol>
  3900. <protocol>HttpPost</protocol>
  3901. </protocols>
  3902. <clientTest>false</clientTest>
  3903. </service>
  3904. <service>
  3905. <wsdl>http://www.webservicex.com/sendsmsworld.asmx?WSDL</wsdl>
  3906. <name>sendsmsworldTest3</name>
  3907. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3908. <protocols>
  3909. <protocol>Soap</protocol>
  3910. <protocol>HttpGet</protocol>
  3911. <protocol>HttpPost</protocol>
  3912. </protocols>
  3913. <clientTest>false</clientTest>
  3914. </service>
  3915. <service>
  3916. <wsdl>http://www.webservicex.com/icd9toicd10.asmx?WSDL</wsdl>
  3917. <name>icd9toicd10Test3</name>
  3918. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3919. <protocols>
  3920. <protocol>Soap</protocol>
  3921. <protocol>HttpGet</protocol>
  3922. <protocol>HttpPost</protocol>
  3923. </protocols>
  3924. <clientTest>false</clientTest>
  3925. </service>
  3926. <service>
  3927. <wsdl>http://www.webservicex.com/FinanceService.asmx?WSDL</wsdl>
  3928. <name>FinanceServiceTest3</name>
  3929. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3930. <protocols>
  3931. <protocol>Soap</protocol>
  3932. <protocol>HttpGet</protocol>
  3933. <protocol>HttpPost</protocol>
  3934. </protocols>
  3935. <clientTest>false</clientTest>
  3936. </service>
  3937. <service>
  3938. <wsdl>http://www.webservicex.com/country.asmx?wsdl</wsdl>
  3939. <name>countryTest3</name>
  3940. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3941. <protocols>
  3942. <protocol>Soap</protocol>
  3943. <protocol>HttpGet</protocol>
  3944. <protocol>HttpPost</protocol>
  3945. </protocols>
  3946. <clientTest>false</clientTest>
  3947. </service>
  3948. <service>
  3949. <wsdl>http://www.webservicex.com/RssToHTML.asmx?WSDL</wsdl>
  3950. <name>RssToHTMLTest3</name>
  3951. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3952. <protocols>
  3953. <protocol>Soap</protocol>
  3954. <protocol>HttpGet</protocol>
  3955. <protocol>HttpPost</protocol>
  3956. </protocols>
  3957. <clientTest>false</clientTest>
  3958. </service>
  3959. <service>
  3960. <wsdl>http://www.webservicex.com/barcode.asmx?WSDL</wsdl>
  3961. <name>barcodeTest3</name>
  3962. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3963. <protocols>
  3964. <protocol>Soap</protocol>
  3965. <protocol>HttpGet</protocol>
  3966. <protocol>HttpPost</protocol>
  3967. </protocols>
  3968. <clientTest>false</clientTest>
  3969. </service>
  3970. <service>
  3971. <wsdl>http://www.webservicex.com/icd9.asmx?WSDL</wsdl>
  3972. <name>icd9Test3</name>
  3973. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3974. <protocols>
  3975. <protocol>Soap</protocol>
  3976. <protocol>HttpGet</protocol>
  3977. <protocol>HttpPost</protocol>
  3978. </protocols>
  3979. <clientTest>false</clientTest>
  3980. </service>
  3981. <service>
  3982. <wsdl>http://projekt.wifo.uni-mannheim.de/elmar/api/ElmarSearchServices?wsdl</wsdl>
  3983. <name>ElmarSearchServicesTest</name>
  3984. <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>
  3985. <protocols>
  3986. <protocol>Soap</protocol>
  3987. </protocols>
  3988. <clientTest>false</clientTest>
  3989. </service>
  3990. <service>
  3991. <wsdl>http://www.webservicex.com/TranslateService.asmx?WSDL</wsdl>
  3992. <name>TranslateServiceTest</name>
  3993. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  3994. <protocols>
  3995. <protocol>Soap</protocol>
  3996. <protocol>HttpGet</protocol>
  3997. <protocol>HttpPost</protocol>
  3998. </protocols>
  3999. <clientTest>false</clientTest>
  4000. </service>
  4001. <service>
  4002. <wsdl>http://www.xignite.com/xrates.asmx?WSDL</wsdl>
  4003. <name>xratesTest</name>
  4004. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  4005. <protocols>
  4006. <protocol>Soap</protocol>
  4007. <protocol>HttpGet</protocol>
  4008. <protocol>HttpPost</protocol>
  4009. </protocols>
  4010. <clientTest>false</clientTest>
  4011. </service>
  4012. <service>
  4013. <wsdl>http://helena.europe.webmatrixhosting.net/LetterSoup.asmx?WSDL</wsdl>
  4014. <name>LetterSoupTest</name>
  4015. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  4016. <protocols>
  4017. <protocol>Soap</protocol>
  4018. </protocols>
  4019. <clientTest>false</clientTest>
  4020. </service>
  4021. <service>
  4022. <wsdl>http://localhost:8080/DataService.asmx?wsdl</wsdl>
  4023. <name>DataServiceTest</name>
  4024. <serverType>Mono-XSP Server/0.9.99.0 128 # Mono</serverType>
  4025. <protocols>
  4026. <protocol>Soap</protocol>
  4027. <protocol>HttpGet</protocol>
  4028. <protocol>HttpPost</protocol>
  4029. </protocols>
  4030. <clientTest>true</clientTest>
  4031. </service>
  4032. <service>
  4033. <wsdl>http://www.javaportal.it/kservices/JIPNews?wsdl</wsdl>
  4034. <name>JIPNewsTest</name>
  4035. <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>
  4036. <protocols>
  4037. <protocol>Soap</protocol>
  4038. </protocols>
  4039. <clientTest>false</clientTest>
  4040. </service>
  4041. <service>
  4042. <wsdl>http://www.tilisoft.com/ws/LocInfo/ZipCode.asmx?WSDL</wsdl>
  4043. <name>ZipCodeTest2</name>
  4044. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  4045. <protocols>
  4046. <protocol>Soap</protocol>
  4047. </protocols>
  4048. <clientTest>false</clientTest>
  4049. </service>
  4050. <service>
  4051. <wsdl>http://www.quisque.com/fr/chasses/crypto/cesar.asmx?WSDL</wsdl>
  4052. <name>cesarTest</name>
  4053. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  4054. <protocols>
  4055. <protocol>Soap</protocol>
  4056. </protocols>
  4057. <clientTest>false</clientTest>
  4058. </service>
  4059. <service>
  4060. <wsdl>http://www.quisque.com/fr/chasses/crypto/vigenere1.asmx?WSDL</wsdl>
  4061. <name>vigenere1Test</name>
  4062. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  4063. <protocols>
  4064. <protocol>Soap</protocol>
  4065. </protocols>
  4066. <clientTest>false</clientTest>
  4067. </service>
  4068. <service>
  4069. <wsdl>http://soap.achchex.com/exec/btrnsoap.dll/wsdl/IBTRNSOAP</wsdl>
  4070. <name>IBTRNSOAPTest</name>
  4071. <serverType>Apache/2.0.43 (Win32) mod_ssl/2.0.43 OpenSSL/0.9.6g # </serverType>
  4072. <protocols>
  4073. <protocol>Soap</protocol>
  4074. </protocols>
  4075. <clientTest>false</clientTest>
  4076. </service>
  4077. <service>
  4078. <wsdl>http://www.costudio.com/WSLinkChecker.asmx?WSDL</wsdl>
  4079. <name>WSLinkCheckerTest</name>
  4080. <serverType>Microsoft-IIS/6.0 # </serverType>
  4081. <protocols>
  4082. <protocol>Soap</protocol>
  4083. </protocols>
  4084. <clientTest>false</clientTest>
  4085. </service>
  4086. <service>
  4087. <wsdl>http://www.webservicex.com/geoipservice.asmx?WSDL</wsdl>
  4088. <name>geoipserviceTest</name>
  4089. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  4090. <protocols>
  4091. <protocol>Soap</protocol>
  4092. <protocol>HttpGet</protocol>
  4093. <protocol>HttpPost</protocol>
  4094. </protocols>
  4095. <clientTest>false</clientTest>
  4096. </service>
  4097. <service>
  4098. <wsdl>http://www.myweb-services.com/server/ShoppingBasket.wsdl</wsdl>
  4099. <name>ShoppingBasketTest</name>
  4100. <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>
  4101. <protocols>
  4102. <protocol>Soap</protocol>
  4103. </protocols>
  4104. <clientTest>false</clientTest>
  4105. </service>
  4106. <service>
  4107. <wsdl>http://www.closerfar.com/dic2.asmx?WSDL</wsdl>
  4108. <name>dic2Test2</name>
  4109. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  4110. <protocols>
  4111. <protocol>Soap</protocol>
  4112. </protocols>
  4113. <clientTest>false</clientTest>
  4114. </service>
  4115. <service>
  4116. <wsdl>http://69.194.99.154/av/wsdl/ITAddressValidations</wsdl>
  4117. <name>ITAddressValidationsTest2</name>
  4118. <serverType>Apache/1.3.28 (Win32) # </serverType>
  4119. <protocols>
  4120. <protocol>Soap</protocol>
  4121. </protocols>
  4122. <clientTest>false</clientTest>
  4123. </service>
  4124. <service>
  4125. <wsdl>http://www.closerfar.com/engtoarabic.asmx?WSDL</wsdl>
  4126. <name>engtoarabicTest2</name>
  4127. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  4128. <protocols>
  4129. <protocol>Soap</protocol>
  4130. </protocols>
  4131. <clientTest>false</clientTest>
  4132. </service>
  4133. <service>
  4134. <wsdl>http://www.ingig.com/channels.asmx?WSDL</wsdl>
  4135. <name>channelsTest</name>
  4136. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  4137. <protocols>
  4138. <protocol>Soap</protocol>
  4139. <protocol>HttpGet</protocol>
  4140. <protocol>HttpPost</protocol>
  4141. </protocols>
  4142. <clientTest>false</clientTest>
  4143. </service>
  4144. <service>
  4145. <wsdl>http://www.javaportal.it/kservices/JIPComuni?wsdl</wsdl>
  4146. <name>JIPComuniTest</name>
  4147. <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>
  4148. <protocols>
  4149. <protocol>Soap</protocol>
  4150. </protocols>
  4151. <clientTest>false</clientTest>
  4152. </service>
  4153. <service>
  4154. <wsdl>http://www.quisque.com/fr/chasses/crypto/hill.asmx?WSDL</wsdl>
  4155. <name>hillTest</name>
  4156. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  4157. <protocols>
  4158. <protocol>Soap</protocol>
  4159. </protocols>
  4160. <clientTest>false</clientTest>
  4161. </service>
  4162. <service>
  4163. <wsdl>http://www.tilisoft.com/ws/eyeVeri/eyeVeri.asmx?WSDL</wsdl>
  4164. <name>eyeVeriTest</name>
  4165. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  4166. <protocols>
  4167. <protocol>Soap</protocol>
  4168. </protocols>
  4169. <clientTest>false</clientTest>
  4170. </service>
  4171. <service>
  4172. <wsdl>http://www.strikeiron.com/WebServices/SMSMessagingService.asmx?WSDL</wsdl>
  4173. <name>SMSMessagingServiceTest</name>
  4174. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  4175. <protocols>
  4176. <protocol>Soap</protocol>
  4177. </protocols>
  4178. <clientTest>false</clientTest>
  4179. </service>
  4180. <service>
  4181. <wsdl>http://www.strikeiron.com/WebServices/taxdata.asmx?WSDL</wsdl>
  4182. <name>taxdataTest</name>
  4183. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  4184. <protocols>
  4185. <protocol>Soap</protocol>
  4186. </protocols>
  4187. <clientTest>false</clientTest>
  4188. </service>
  4189. <service>
  4190. <wsdl>http://smsserver.dotnetisp.com/ServiceSMS.asmx?WSDL</wsdl>
  4191. <name>ServiceSMSTest</name>
  4192. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  4193. <protocols>
  4194. <protocol>Soap</protocol>
  4195. </protocols>
  4196. <clientTest>false</clientTest>
  4197. </service>
  4198. <service>
  4199. <wsdl>http://www.quisque.com/fr/chasses/crypto/crypta.asmx?WSDL</wsdl>
  4200. <name>cryptaTest</name>
  4201. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  4202. <protocols>
  4203. <protocol>Soap</protocol>
  4204. </protocols>
  4205. <clientTest>false</clientTest>
  4206. </service>
  4207. <service>
  4208. <wsdl>http://www.netkoder.dk/postnummerws.asmx?wsdl</wsdl>
  4209. <name>postnummerwsTest</name>
  4210. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  4211. <protocols>
  4212. <protocol>Soap</protocol>
  4213. </protocols>
  4214. <clientTest>false</clientTest>
  4215. </service>
  4216. <service>
  4217. <wsdl>http://addressmeister.bizware.com/service/wsdl/server.soap.wsdl</wsdl>
  4218. <name>serverTest2</name>
  4219. <serverType>Apache/1.3.26 (Unix) mod_ssl/2.8.10 OpenSSL/0.9.6b PHP/4.3.6 # PHP/4.3.6</serverType>
  4220. <protocols>
  4221. <protocol>Soap</protocol>
  4222. </protocols>
  4223. <clientTest>false</clientTest>
  4224. </service>
  4225. <service>
  4226. <wsdl>http://server.dotnetisp.com/webservices/dotnetisp/src2html.asmx?WSDL</wsdl>
  4227. <name>src2htmlTest</name>
  4228. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  4229. <protocols>
  4230. <protocol>Soap</protocol>
  4231. </protocols>
  4232. <clientTest>false</clientTest>
  4233. </service>
  4234. <service>
  4235. <wsdl>http://www.myweb-services.com/server/UserApps.wsdl</wsdl>
  4236. <name>UserAppsTest</name>
  4237. <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>
  4238. <protocols>
  4239. <protocol>Soap</protocol>
  4240. </protocols>
  4241. <clientTest>false</clientTest>
  4242. </service>
  4243. <service>
  4244. <wsdl>http://webservices.mio.it/sendsms.asmx?WSDL</wsdl>
  4245. <name>sendsmsTest</name>
  4246. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  4247. <protocols>
  4248. <protocol>Soap</protocol>
  4249. <protocol>HttpGet</protocol>
  4250. <protocol>HttpPost</protocol>
  4251. </protocols>
  4252. <clientTest>false</clientTest>
  4253. </service>
  4254. <service>
  4255. <wsdl>http://server.dotnetisp.com/webservices/dotnetisp/codepostal.asmx?WSDL</wsdl>
  4256. <name>codepostalTest</name>
  4257. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  4258. <protocols>
  4259. <protocol>Soap</protocol>
  4260. </protocols>
  4261. <clientTest>false</clientTest>
  4262. </service>
  4263. <service>
  4264. <wsdl>http://www.strikeiron.com/webservices/medicaredata.asmx?WSDL</wsdl>
  4265. <name>medicaredataTest</name>
  4266. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  4267. <protocols>
  4268. <protocol>Soap</protocol>
  4269. </protocols>
  4270. <clientTest>false</clientTest>
  4271. </service>
  4272. <service>
  4273. <wsdl>http://www.strikeiron.com/WebServices/dataenhancement.asmx?WSDL</wsdl>
  4274. <name>dataenhancementTest</name>
  4275. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  4276. <protocols>
  4277. <protocol>Soap</protocol>
  4278. </protocols>
  4279. <clientTest>false</clientTest>
  4280. </service>
  4281. <service>
  4282. <wsdl>http://server.dotnetisp.com/webservices/dotnetisp/ville.asmx?WSDL</wsdl>
  4283. <name>villeTest</name>
  4284. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  4285. <protocols>
  4286. <protocol>Soap</protocol>
  4287. </protocols>
  4288. <clientTest>false</clientTest>
  4289. </service>
  4290. <service>
  4291. <wsdl>http://webservices.wolfram.com/services/Integrator/Integrate.m?wsdl</wsdl>
  4292. <name>IntegrateTest</name>
  4293. <serverType>Apache Coyote/1.0 # </serverType>
  4294. <protocols>
  4295. <protocol>Soap</protocol>
  4296. </protocols>
  4297. <clientTest>false</clientTest>
  4298. </service>
  4299. <service>
  4300. <wsdl>http://www.javaportal.it/kservices/JIPCodice?wsdl</wsdl>
  4301. <name>JIPCodiceTest</name>
  4302. <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>
  4303. <protocols>
  4304. <protocol>Soap</protocol>
  4305. </protocols>
  4306. <clientTest>false</clientTest>
  4307. </service>
  4308. <service>
  4309. <wsdl>http://www.strikeiron.com/WebServices/datageneration.asmx?WSDL</wsdl>
  4310. <name>datagenerationTest</name>
  4311. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  4312. <protocols>
  4313. <protocol>Soap</protocol>
  4314. </protocols>
  4315. <clientTest>false</clientTest>
  4316. </service>
  4317. <service>
  4318. <wsdl>http://localhost:8080/DuplicateArrayTest.asmx?wsdl</wsdl>
  4319. <name>DuplicateArrayTestTest</name>
  4320. <serverType>Mono-XSP Server/0.13.0.0 128 # Mono</serverType>
  4321. <protocols>
  4322. <protocol>Soap</protocol>
  4323. </protocols>
  4324. <clientTest>true</clientTest>
  4325. </service>
  4326. <service>
  4327. <wsdl>http://localhost:8080/SessionCounter.asmx?wsdl</wsdl>
  4328. <name>SessionCounterTest</name>
  4329. <serverType>Mono-XSP Server/0.13.0.0 128 # Mono</serverType>
  4330. <protocols>
  4331. <protocol>Soap</protocol>
  4332. <protocol>HttpGet</protocol>
  4333. <protocol>HttpPost</protocol>
  4334. </protocols>
  4335. <clientTest>true</clientTest>
  4336. </service>
  4337. <service>
  4338. <wsdl>http://www.xignite.com/xIndices.asmx?WSDL</wsdl>
  4339. <name>xIndicesTest</name>
  4340. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  4341. <protocols>
  4342. <protocol>Soap</protocol>
  4343. <protocol>HttpGet</protocol>
  4344. <protocol>HttpPost</protocol>
  4345. </protocols>
  4346. <clientTest>false</clientTest>
  4347. </service>
  4348. <service>
  4349. <wsdl>http://smsserver.dotnetisp.com/servicesms.asmx?WSDL</wsdl>
  4350. <name>servicesmsTest</name>
  4351. <clientTest>false</clientTest>
  4352. </service>
  4353. <service>
  4354. <wsdl>http://services.aonaware.com/DictService/DictService.asmx?WSDL</wsdl>
  4355. <name>DictServiceTest</name>
  4356. <serverType>Microsoft-IIS/6.0 # ASP.NET</serverType>
  4357. <protocols>
  4358. <protocol>Soap</protocol>
  4359. <protocol>HttpGet</protocol>
  4360. <protocol>HttpPost</protocol>
  4361. </protocols>
  4362. <clientTest>false</clientTest>
  4363. </service>
  4364. <service>
  4365. <wsdl>http://www.xignite.com/xCurrencies.asmx?WSDL</wsdl>
  4366. <name>xCurrenciesTest</name>
  4367. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  4368. <protocols>
  4369. <protocol>Soap</protocol>
  4370. <protocol>HttpGet</protocol>
  4371. <protocol>HttpPost</protocol>
  4372. </protocols>
  4373. <clientTest>false</clientTest>
  4374. </service>
  4375. <service>
  4376. <wsdl>http://xml.whereisthatip.com/ip-location-service.wsdl</wsdl>
  4377. <name>iplocationserviceTest</name>
  4378. <serverType>Apache/2.0.49 (Unix) PHP/5.0.0RC2 # PHP/5.0.0RC2</serverType>
  4379. <protocols>
  4380. <protocol>Soap</protocol>
  4381. </protocols>
  4382. <clientTest>false</clientTest>
  4383. </service>
  4384. <service>
  4385. <wsdl>http://www.xignite.com/xHistorical.asmx?WSDL</wsdl>
  4386. <name>xHistoricalTest</name>
  4387. <serverType>Microsoft-IIS/5.0 # ASP.NET</serverType>
  4388. <protocols>
  4389. <protocol>Soap</protocol>
  4390. <protocol>HttpGet</protocol>
  4391. <protocol>HttpPost</protocol>
  4392. </protocols>
  4393. <clientTest>false</clientTest>
  4394. </service>
  4395. </services>