Hi,
In a nutshell, I have to write an Excel / Word macro what will consume a Web Service that will access an Oracle database to extract some information back to an Excel or Word template. I'm new to all of these technologies: VBA, Web Service and XML. After doing some reading online, I’ve figured out how to write some VBA code to call a web service, which involves simple input/output parameters such as a string or an integer. But, I don’t know how to call a web service method, where the input parameter is defined as “IXMLDOMNodeList”. To be more specific, the method I’m trying to call is:
Public Function wsm_AccountQueryPage(ByVal any_AccountWS_AccountQueryPage_Input As MSXML2.IXMLDOMNodeList) As MSXML2.IXMLDOMNodeList
I don’t have any more information than this. How do I create an object of MSXML2.IXMLDOMNodeList type? Is there any more information I should get before trying to tackle this?
Any help will be appreciated!
Thanks in advance!
In a nutshell, I have to write an Excel / Word macro what will consume a Web Service that will access an Oracle database to extract some information back to an Excel or Word template. I'm new to all of these technologies: VBA, Web Service and XML. After doing some reading online, I’ve figured out how to write some VBA code to call a web service, which involves simple input/output parameters such as a string or an integer. But, I don’t know how to call a web service method, where the input parameter is defined as “IXMLDOMNodeList”. To be more specific, the method I’m trying to call is:
Public Function wsm_AccountQueryPage(ByVal any_AccountWS_AccountQueryPage_Input As MSXML2.IXMLDOMNodeList) As MSXML2.IXMLDOMNodeList
I don’t have any more information than this. How do I create an object of MSXML2.IXMLDOMNodeList type? Is there any more information I should get before trying to tackle this?
Any help will be appreciated!
Thanks in advance!