Hi,
1. Just verify giving the path for WS-I validation location as
C:\<Test Folder>
2. Use the WS- I validation tool to test the web services and its interoperability basically. Interoperability Testing Tools 1.1, is a third-party application and is not provided with QTP.
I could think of the following alternate solution:
You can use XML DOM, WinHttp and templates for verifying the web services XML.
let us know if this helps.
1. Just verify giving the path for WS-I validation location as
C:\<Test Folder>
2. Use the WS- I validation tool to test the web services and its interoperability basically. Interoperability Testing Tools 1.1, is a third-party application and is not provided with QTP.
I could think of the following alternate solution:
You can use XML DOM, WinHttp and templates for verifying the web services XML.
Code:
strXMLTempFile = "c:\test\ws\Templates.xml"
strTemplate = "Template"
Msgbox getXMLTemplate (strXMLTempFile, strTemplate)
Function getXMLTemplate (strXMLTempFile, strTemplate)
Set xmlDoc = CreateObject("Msxml2.DOMDocument")
'load XML file
xmlDoc.load(strXMLTemplateFile)
'Check XML syntax
If (xmlDoc.parseError.errorCode <> 0) Then
' Parse XML to verify the tags
Set myErr = xmlDoc.parseError
Msgbox "ERROR: " & myErr.reason
End If
' Same way verify the template
Set xmlDoc = Nothinglet us know if this helps.

