"German Arduino" <
[hidden email]> wrote in message
news:42f24ee6$
[hidden email]...
> I'm trying to develop some little tool to read and format data from a
> swiki.
> I try to use
>
> (IStream onURL: '
http://localhost/miswiki/') contents asString
>
> but the swiki is configured to ask user/password also to read it.
> ¿How I can pass us/pw with IStream?
> Thanks in Advance by the help.
I am not sure if there is an easy way to do that anymore. I believe that
one used to be able to do something like this:
(IStream onURL: '
http://user:password@.../') contents asString.
However MS removed the ability to use that style URL in IE because it was
being used for "fishing". Try the above approach and see if it works, it
just depends where MS has removed support for that approach. If they just
blocked it from the IE UI the above code may still work.
If the above does not work then you may be able to drive IE, or parts of it,
or make your own http connection. Someone else may be able to offer more
guidance on that.
Chris