使用 Visual Studio Team System 2008 将参数传递给 SOAP Web 服务请求
如何将当前日期时间参数传递给 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其转换为编码测试。添加 Datetime.Now.ToString(format) 调用很容易。
Convert it to a coded test. Easy enough to add a Datetime.Now.ToString(format) call.