<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Hello,<br>
<br>
----- Message d'origine ----- <br>
De : H Carl <br>
Date : 20/04/2010 16:04:
<blockquote
 cite="mid:q2y8c1a2be91004200704la2dd2403hd28df6549eafdd84@mail.gmail.com"
 type="cite"><span class="Apple-style-span"
 style="font-family: arial,sans-serif; font-size: 13px; border-collapse: collapse;">I
have been unable to find any SciLab commands that would allow
reading/writing to a url.  Does that possibility exist?  It would be
very helpful for taking advantage of a site's webservices.
  <div>Thanks.</div>
  </span></blockquote>
You can use Curl that is embedded into scilab.<br>
If you are using Scilab under Windows, here is an example :<br>
URL=<a class="moz-txt-link-rfc2396E" href="http://www-cgi.uni-regensburg.de/WWW_Server/Dokumentation/misc/CURL/curl.pdf">"http://www-cgi.uni-regensburg.de/WWW_Server/Dokumentation/misc/CURL/curl.pdf"</a>;  
   <br>
filename="curl_manual.pdf";<br>
rep=unix(SCI+"/tools/curl/curl -o "+filename+" "+URL)<br>
The file targetted by the URL will be recorded into the specified local
file.<br>
If you are using another operating system, you just have to customize
the<br>
path leading to the curl executable file.<br>
<br>
Regards<br>
Samuel<br>
<br>
</body>
</html>