24

使用SoapUI,可以将 Soap XML 消息发送到 WCF 服务。我有以下 SOAP 消息:

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:my="http://myserviceprovider">
   <soap:Header/>
   <soap:Body>
      <my:ProcessOrder>
         <my:Orders>
            <my:Order>
               <my:id>randomid_1234567890</my:id>
               <my:data>ABC</my:data>
            </my:Order>
         </my:Orders>
      </my:ProcessOrder>
   </soap:Body>
</soap:Envelope>

因为 WCF 服务需要my:id的唯一 ID ,所以我想知道 SoapUI 是否提供自动生成随机 GUID 的功能?

4

3 回答 3

84

这将生成一个全局唯一的 id:

${=java.util.UUID.randomUUID()}
于 2011-07-26T23:20:33.440 回答
11

我建议不要使用随机 ID,而是使用精确到毫秒的时间戳,因为该数字永远不会重复。

我自己没有这样做,但看起来你调用了一个字符串函数:

01  ...
02  ...
03   <!-- text within dateEffectiveFrom tag is replaced with a date 10 days from today in yyyy-MM-dd format -->
04   <dateEffectiveFrom>${=  String.format('%tF', new Date() + 10) }</dateEffectiveFrom>
05   
06  <!-- TestSuite property "date" is defined as "${=  String.format('%tF', new Date() + 10) }" -->
07  <!-- Another example where dynamic date is defined as TestSuite property -->
08  <!-- and then SOAP Request can refer to this TestSuite property as shown below -->
09   <dateEffectiveFrom>${#TestSuite#date}</dateEffectiveFrom>
10  ...
11  ...

http://onebyteatatime.wordpress.com/2009/04/18/soapui-tips-n-tricks-part-2/

于 2010-09-16T14:57:43.287 回答
8

我刚刚使用下面的代码在我的 SOAPUI 请求中生成随机数,它没有任何问题。这将生成一个 10 位的随机数。

<val:Id UniqueID="${=org.apache.commons.lang.RandomStringUtils.randomNumeric(10)}"/>

如果要更改位数,只需在randomNumeric()方法中更改所需的位数即可。

于 2016-02-18T03:24:02.827 回答