Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Sending soap request in qtp
#1
Not Solved
Hi ,
need help on webservices testing

i want to sent SOap xml as request using post method and verify the xml content

need some sample code on webservices testing


tugandhar@gmail.com
Reply
#2
Not Solved
Hi ugandhar,

You can use web Service testing Wizard provided by QTP for testing webservices. Else can be done using WinHttpRequest object.

First Create an properly formatted request XML.

'Create Object of WinHttp.WinHttpRequest.5.1
Code:
Set WinHttpReq = CreateObject("WinHttp.WinHttpRequest.5.1")
'Configure timeouts in milliseconds (Resolve, Connect, Send, Receive).
Code:
WinHttpReq.SetTimeouts 30000, 30000, 30000, 30000
'Open [POST] connection to Web Service via WinHttpRequest object.
Code:
WinHttpReq.Open "POST", ServerName, False
'Configure HTTP request header properties.
Code:
WinHttpReq.SetRequestHeader "Content-Type", "text/xml;charset=utf-8"
WinHttpReq.SetRequestHeader "Accept", "text/xml, multipart/related, text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
WinHttpReq.SetRequestHeader "Content-Transfer-Encoding", "binary"
WinHttpReq.SetRequestHeader "Connection", "keep-alive"

'Define connection values.
Code:
HTTPREQUEST_SETCREDENTIALS_FOR_SERVER = 0
UserName = "XYZ"
Password
= *****

'Send connection authorization credentials.
Code:
WinHttpReq.SetCredentials UserName, Password, HTTPREQUEST_SETCREDENTIALS_FOR_SERVER
'Send request input as a properly formatted XML string.
Code:
WinHttpReq.Send(strXML)
'Reference response text
Code:
sResponseText = CStr(WinHttpReq.ResponseText)

Verify what ever Tag you want to verify.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Want to Automate SOAP UI test cases on QTP geethwind 6 18,767 08-07-2014, 12:03 AM
Last Post: rshrestha
  Request Help | Usage of Oracle Add-In for Oracle SQL Developer Nasir Ahmed 3 3,283 06-18-2014, 04:28 PM
Last Post: vinod123
Rolleyes Urgent help with Gmail Sending mail feature nidhitaneja 2 2,718 03-05-2014, 09:39 PM
Last Post: nidhitaneja
  Webservies with SOAP Attachment - QTP Kesavan 5 6,917 04-26-2013, 03:11 PM
Last Post: sheela
MyBB request for VB code for finding X in dynamic web table davidsmi@bossig.com 2 2,912 04-16-2011, 06:40 AM
Last Post: davidsmi@bossig.com

Forum Jump:


Users browsing this thread: 1 Guest(s)