This should be fixed in VS2005 according to this post from Gary Chang[MSFT]:
But it is not fixed and the solution that was linked by one poster for
VS2003 doesn't seem to work for me with 2005 either.
What exactly do I need to do to fix this problem?
> Update: I was able to get rid of this error message by setting WINVER,
> etc. to 0x500, however all webservice calls fail under Windows 2000
> with hresult = 0x80040154. The calls work fine under XP. What could be
> the cause of this? Am I missing a DLL or some system file somewhere?
Any chance you can step through the call and see where it returns the failed
HRESULT?
0x80040154 == Class not registered, so there's definitely something missing
(or the code asks for something that shouldn't be there).
--
Best regards,
Kim Gräsman
I have the same problem. Do you have any solution for the issue.
Any help would be greatly appreciated
regards
feroze
Fero...@canon.co.nz
>>> Update: I was able to get rid of this error message by setting
>>> WINVER, etc. to 0x500, however all webservice calls fail under
>>> Windows 2000 with hresult = 0x80040154. The calls work fine under
>>> XP. What could be the cause of this? Am I missing a DLL or some
>>> system file somewhere?
>>>
>> Any chance you can step through the call and see where it returns the
>> failed HRESULT?
>
> I have the same problem. Do you have any solution for the issue.
Well, I'll ask you the same question -- can you step through the code and
see where it fails? Then post back with details.
I don't have any experience with web services, so I probably can't help,
but you never know.
--
Best Regards,
Kim Gräsman
#if _WIN32_WINNT < 0x0502
#define ADDRINFOT addrinfo
#define GetAddrInfo getaddrinfo
#define FreeAddrInfo freeaddrinfo
#endif
"Articulate" <Artic...@discussions.microsoft.com> wrote in message
news:C64C65D8-3C1D-42E8...@microsoft.com...