Using Web Protocol:
We can create the same request using Web (HTTP/HTML) protocol. You need take the xml request as shown in the following and place in the web custom request.
XML Request Example for Web Custom Request
You need to keep this soap request in the web request body. As shown below and you can capture all the response using correlation function. You can also add check point using web_reg_find. The url should end with .asmx as shown in the request.
web_reg_find("Text/IC=New Delhi", LAST); web_reg_save_param_ex( "ParamName=Web Service Response", "LB=", "RB=", SEARCH_FILTERS, LAST); web_custom_request("Weather SOAP Request", "URL=http://www.webservicex.net/globalweather.asmx", "Method=POST", "TargetFrame=", "Resource=0", "RecContentType=text/xml", "Referer=", "Mode=HTML", "EncType=text/xml; charset=utf-8", "Body= Your Request should be here as shown in the following image" LAST);
Web Custom Request with Web Services