使用 Visual Studio Team System 2008 将参数传递给 SOAP Web 服务请求

发布于 2024-09-04 20:06:33 字数 648 浏览 6 评论 0原文

如何将当前日期时间参数传递给 SOAP 请求?我知道您可以通过向 Web 测试项目添加数据源来传递参数,并像这样 {{DataSource.TableName.FieldName}} 一样引用它。

但我想将当前日期时间参数作为动态值传递(例如 DateTime.Now)。我该怎么做呢?下面是我放入 String Body 中的示例 SOAP 请求:

<soap:body>
   <MyQuery xmlns="http://something.com">
      <req>
         <QueryType>{{DataSource.Table.QueryType}}</QueryType>
         <Name>{{DataSource.Table.Name}}</Name>
         <RequestDateTime>{{insert DateTime.Now here}}</RequestDatetime>
      </req>
   </MyQuery>
</soap:body>

PS 通过在 Visual Studio Team System 2008 中添加 Web 服务请求来运行 Web 测试

How can I pass in the current datetime parameter to a SOAP request? I know you can pass in parameters by adding a datasource to the web test project and reference it like this {{DataSource.TableName.FieldName}}.

But I want to pass in current datetime parameter as a dynamic value (something like DateTime.Now). How do I go about doing this? Below is sample SOAP request that I put into String Body:

<soap:body>
   <MyQuery xmlns="http://something.com">
      <req>
         <QueryType>{{DataSource.Table.QueryType}}</QueryType>
         <Name>{{DataSource.Table.Name}}</Name>
         <RequestDateTime>{{insert DateTime.Now here}}</RequestDatetime>
      </req>
   </MyQuery>
</soap:body>

P.S. Running web test by adding Web Service Request in Visual Studio Team System 2008

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜灵血窟げ 2024-09-11 20:06:33

将其转换为编码测试。添加 Datetime.Now.ToString(format) 调用很容易。

Convert it to a coded test. Easy enough to add a Datetime.Now.ToString(format) call.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文