Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm well and truly stuck with MS SOAP 3.0, which I'm currently running from VBA Excel in Office 2003. I have used MS SOAP Toolkit 3 to create a proxy class which I am using. If I don't use it, I don't get the error, but then I'd have to write out the entire proxy class by hand and it's massive.

When my program is first run, I get "Class not registered". If I run it again I get "Interface not supported". The error messge is:

run-time error: '-2147467262'

SoapMapper: The SoapMapper for element callContextIn could not be created HRESULT=0x80004002: No such interface supported. -WSDLOperation:Initialisation of a SoapMapper for operation getSNFormat HRESULT=0x80004002: No such interfce supported.

The error occurs when:

Set sc_PartService = New SoapClient30

Help would be greatly appreciated.

Thanks

share|improve this question

2 Answers

Just now I deleted "Set", got an error of course, put it back and it ran properly. Once. Not again, and I've been unable to recreate this. Never encountered anything like that before!

share|improve this answer

HAve you checked if the COM object exists / is registered?

share|improve this answer
SoapClient30 exists as a Class in the Object Browser. I'm not sure if that makes it a COM object – Dave Sep 8 '09 at 9:50
HMm that means it is registered. Could be a security issue of sorts. In administrative tools -> COM -> DCOM config you could see which users have the Local Launch and Local Activation permissions. – Colin Sep 8 '09 at 10:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.