They''re calling it an XML/SOAP webservice. The full documentation is here: http://www.unipress.com/footprints/webservices/
Here's their example code for PHP. If I'm reading that example code correctly (and it's possible that I'm not) it's saying that the webservice resides here: http://some.server.com/MRcgi/MRWebServices.pl (with "some server" being our server - footprints.uwex.edu) Would you agree? And shouldn't that page return something? That's the page that if you browse it returns a blank. <h2>Web Service Test - search</h2> <? try { $client = new SoapClient(NULL, array( "location"=>"http://some.server.com/MRcgi/MRWebServices.pl", "uri"=>"MRWebServices", "style"=>SOAP_RPC, "use" => SOAP_ENCODED ) ); $issues = $client->MRWebServices__search("WebServices",'myPassword','', "select mrID, mrTITLE from MASTER99 WHERE lower(mrTITLE) LIKE 'test%'"); print "<BR><b> Search:<hr><br>\n"; print "<pre>"; print_r($issues); print"</pre><br>\n"; } catch (SoapFault $exception) { print "ERROR! - Got a SOAP exception:<br>"; echo $exception; } ?> On 8/8/06, Dave Watts <[EMAIL PROTECTED]> wrote: > > That's what I was trying to clarify. I'm pretty sure > > Footprints doesn't generate a WSDL. (There's no mention of > > WSDL in their documentation.) It's a perl webservice implementation. > > According to the docs, you call a .pl file. When I call that > > .pl file with a browser, I get nothing. Somethings wrong with > > the service itself, yes? > > If this is a SOAP web service, you should have a WSDL URL for that service. > If there's no WSDL, it probably isn't a SOAP web service. > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:249210 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

