Steve,
"steve geringer" <
[hidden email]> wrote in message
news:j4c%e.77151$
[hidden email]...
>
[hidden email] wrote:
>> IXMLHttpRequest>>#open:bstrUrl:varAsync:bstrUser:bstrPassword: ???
This has worked well for us. It not only let you specify GET or PUT, but it
also deals with firewalls more gracefully. Here are a couple of trivial
(but useful to me) helper methods. They might help in your investigations,
if you're not beyond them already:
open: methodString url: url
"helper method"
^self
open: methodString
bstrUrl: url
varAsync: VARIANT unspecified
bstrUser: VARIANT unspecified
bstrPassword: VARIANT unspecified
open: methodString url: url async: aBoolean
"helper method"
^self
open: methodString
bstrUrl: url
varAsync: aBoolean
bstrUser: VARIANT unspecified
bstrPassword: VARIANT unspecified
HTH,
Don
>>
>
>
>
> Thanks dz... I'll take a look at it.
>