我正在尝试使用QTP中的Web服务工具提交XML。我可以毫无问题地提交有效的XML,但是当我尝试为负面测试提交无效的XML时(例如,当元素值应该是有效日期时,将元素值设置为'XXX')。我一直在线上出错
设置submitXMLRequest = WebServices(webservicename).submitRequest(subReq)
错误显示“XML文档中存在错误(92,8) 例外情况:mscorlib 字符串未被识别为有效的日期时间
如何在提交请求之前阻止XML数据的验证?
答案 0 :(得分:0)
您是否尝试过在不使用网络服务工具的情况下通过QTP访问网络服务?我通过QTP / UFT运行我们所有的Web服务,没有套件的那部分,我可以向API提交任何我想要的内容。
我必须在提交格式错误的XML / JSON数据后检查响应,以确保在主服务处理之前完成检查,这听起来就像您尝试做的那样。
没有实际使用该工具,是否可以在提交之前验证您的请求?如果是这种情况,则可能无法注入错误的请求数据。
答案 1 :(得分:0)
我相信您正在使用UFT API模块。 UFT解析XML,因此您将无法输入XML特殊字符&和<在数据部分。您可以使用以下函数来执行xml请求发布。这就是我现在在项目中使用的内容。
public static string HttpRequest(string url, string xml)
{
string response = string.Empty;
HttpWebRequest httpWebRequest = null;
HttpWebResponse httpWebResponse = null;
httpWebRequest = (HttpWebRequest)WebRequest.Create(url);
httpWebRequest.Timeout = 10000;
try
{
byte[] bytes = System.Text.Encoding.ASCII.GetBytes(xml);
httpWebRequest.Method = "POST";
httpWebRequest.ContentLength = bytes.Length;
httpWebRequest.ContentType = "text/xml; encoding='utf-8'";
using (Stream requestStream = httpWebRequest.GetRequestStream())
{
requestStream.Write(bytes, 0, bytes.Length);
requestStream.Close();
}
httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse();
if (httpWebResponse.StatusCode == HttpStatusCode.OK)
{
using (Stream responseStream = httpWebResponse.GetResponseStream())
{
using (StreamReader reader = new StreamReader(responseStream))
response = reader.ReadToEnd();
}
}
httpWebResponse.Close();
}
catch (Exception ex)
{
throw new Exception ("Error");
}
finally
{
if (httpWebResponse != null)
{
httpWebResponse.Close();
httpWebResponse = null;
}
httpWebRequest = null;
}
return response;
}