Return-Path: X-Original-To: apmail-jmeter-user-archive@www.apache.org Delivered-To: apmail-jmeter-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6388F10F10 for ; Mon, 7 Sep 2015 10:35:43 +0000 (UTC) Received: (qmail 17738 invoked by uid 500); 7 Sep 2015 10:35:42 -0000 Delivered-To: apmail-jmeter-user-archive@jmeter.apache.org Received: (qmail 17692 invoked by uid 500); 7 Sep 2015 10:35:42 -0000 Mailing-List: contact user-help@jmeter.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "JMeter Users List" Delivered-To: mailing list user@jmeter.apache.org Received: (qmail 17681 invoked by uid 99); 7 Sep 2015 10:35:42 -0000 Received: from Unknown (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Sep 2015 10:35:42 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 385B2C0252 for ; Mon, 7 Sep 2015 10:35:42 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 2.429 X-Spam-Level: ** X-Spam-Status: No, score=2.429 tagged_above=-999 required=6.31 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_ENVFROM_END_DIGIT=0.25, HTML_MESSAGE=3, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_PASS=-0.001] autolearn=disabled Authentication-Results: spamd4-us-west.apache.org (amavisd-new); dkim=pass (2048-bit key) header.d=gmail.com Received: from mx1-us-east.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id DUYQMVt_4n12 for ; Mon, 7 Sep 2015 10:35:41 +0000 (UTC) Received: from mail-wi0-f175.google.com (mail-wi0-f175.google.com [209.85.212.175]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with ESMTPS id 3DDEB43DF0 for ; Mon, 7 Sep 2015 10:35:41 +0000 (UTC) Received: by wicfx3 with SMTP id fx3so83752204wic.1 for ; Mon, 07 Sep 2015 03:35:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=hUFszwqvj+gRj3CTPM0qtquiD3kUg1rx8/VoO/3qIk4=; b=c8vA8XAxoDcoaVqrVdFE7v7Mz2RnEbTBO79Cr8q88TxMymmnLRXDXbnaJxVnc/75U+ F64H9vVo3xuqFPP2yIoMsRK3UJ8NmRmoItlm/dre7N0DRFSa2NcZ4Yr30AD/E8wF6wVq RMH7b5sfBNRsUqWb+N4qHok0mCN5Q3BZ/YEcRJ4yQRYAn4KpD88K4/c8NN+BQL8zO174 dPFhd2j7HMKubDR4LD1X6EWFOW70OyGx+XKIRboMNPz5dFnOmAC8SUXN+KHyGC0kLsvv Vg3QckFU8faLP5MmPZOuA36XUGVX8BujPy7ZMQXIBT+Nnc8njuVEnebIEsLpsETw0Dhk SfYg== X-Received: by 10.194.82.167 with SMTP id j7mr34383719wjy.123.1441622140465; Mon, 07 Sep 2015 03:35:40 -0700 (PDT) MIME-Version: 1.0 Received: by 10.28.86.87 with HTTP; Mon, 7 Sep 2015 03:35:21 -0700 (PDT) In-Reply-To: References: From: Pratapi Hemant Patel Date: Mon, 7 Sep 2015 16:05:21 +0530 Message-ID: Subject: Re: Different parameter values in request name and the actual request To: JMeter Users List Content-Type: multipart/alternative; boundary=047d7bb04d2c953977051f25cfdc --047d7bb04d2c953977051f25cfdc Content-Type: text/plain; charset=UTF-8 For your second question *Why is token number used in name of http request for **ThreadGroup_VerifyTokenInfo and actual token used in get request are not **same.* Property variables are shared among all threads. So when jmeter reads the http request name via __P(accesstoken), before reading the same variable in path, some other threads change its value. So u r geeting different value. U can use parameterized controller with a variable (access-token, __P(accesstoken)) and put your http request in it. In the name and path use variable ${access-token} For your first question, I didn't understand :) --047d7bb04d2c953977051f25cfdc--