
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hi,
have you any excperience with webservices and vb script? I need some extra logic in HP ALM 12, so I have to write script in which I would like to call webservice (writen in java). Everything works fine with MS WS, but not with soap WS writen in java.
Tnx
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
I found a solution and it works for me.
xxx is WS endpoint (not wsdl).
yyy is xml request
dim restService
set restService=createObject("Microsoft.XMLHTTP")
query = "xxx"
restService.Open "POST", query, False
restService.setRequestHeader "Content-Type", "text/xml"
DataToSend = "yyy"
restService.Send DataToSend
respXml = restService.responseText
MsgBox respXml

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
I found a solution and it works for me.
xxx is WS endpoint (not wsdl).
yyy is xml request
dim restService
set restService=createObject("Microsoft.XMLHTTP")
query = "xxx"
restService.Open "POST", query, False
restService.setRequestHeader "Content-Type", "text/xml"
DataToSend = "yyy"
restService.Send DataToSend
respXml = restService.responseText
MsgBox respXml