CREATE(autXmlHttp); autXmlHttp.open('POST', txtServiceURI, 0); autXmlHttp.setRequestHeader('Content-type', 'text/xml'); autXmlHttp.setRequestHeader('AuthUser', txtUserName); autXmlHttp.setRequestHeader('AuthPassword', txtPassword); autXmlHttp.setRequestHeader('SOAPAction', txtServiceAction); autXmlHttp.setRequestHeader('Timeout', FORMAT(intTimeout)); autXmlHttp.send(autXmlDoc);Any ideas?
Comments
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
EDIT: and excuse the late response. Did not realise I was not subscribed to the post.
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
Just for those of you who enjoy NAV's lack of intellisense:
autXmlHttp.open(BSTR bstrMethod, BSTR bstrURL[, VARIANT varAsync][, VARIANT bstrUser][, VARIANT bstrPassword]
Thanks a lot, appreciate it.
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.