From: "Marcus Vinicius Eiffle Duarte" <xxx@nospam.net>
Path: news.mathworks.com!newsfeed.mathworks.com!WebX
Newsgroups: comp.soft-sys.matlab
Subject: Re: URLREAD and password protected url...
Message-ID: <eec2a4f.1@WebX.raydaftYaTP>
Date: Fri, 22 Aug 2003 10:00:48 -0400
References: <eec2a4f.-1@WebX.raydaftYaTP>
Lines: 11
MIME-Version: 1.0
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
Xref: news.mathworks.com comp.soft-sys.matlab:171025



Michael,


I do not have Matlab running here, so I can't test it.. but have you
tried to use urlread with method = 'post' and params = 'cell_array',
where cell_array = {username;password}?


Like this


urldoc = urlread('http://www.foo.com','post',{'mylogin';'mypasswd');


Hope it works.